-- MySQL dump 10.19  Distrib 10.3.37-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: flapst5_wp57811
-- ------------------------------------------------------
-- Server version	10.3.37-MariaDB

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

--
-- Table structure for table `wp1j_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp1j_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=227 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_actionscheduler_actions`
--

LOCK TABLES `wp1j_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp1j_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp1j_actionscheduler_actions` VALUES (224,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[130]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-11-09 16:08:56','2022-11-09 16:08:56',0,NULL),(225,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[131]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-11-10 16:18:01','2022-11-10 16:18:01',0,NULL),(226,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[132]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-11-12 18:14:54','2022-11-12 18:14:54',0,NULL);
/*!40000 ALTER TABLE `wp1j_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp1j_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=29645 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_actionscheduler_claims`
--

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

--
-- Table structure for table `wp1j_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp1j_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_actionscheduler_groups`
--

LOCK TABLES `wp1j_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp1j_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp1j_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wp_mail_smtp');
/*!40000 ALTER TABLE `wp1j_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp1j_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=424 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_actionscheduler_logs`
--

LOCK TABLES `wp1j_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp1j_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp1j_actionscheduler_logs` VALUES (415,224,'action created','2022-11-09 16:07:11','2022-11-09 16:07:11'),(416,224,'action started via WP Cron','2022-11-09 16:08:56','2022-11-09 16:08:56'),(417,224,'action complete via WP Cron','2022-11-09 16:08:56','2022-11-09 16:08:56'),(418,225,'action created','2022-11-10 16:14:07','2022-11-10 16:14:07'),(419,225,'action started via WP Cron','2022-11-10 16:18:01','2022-11-10 16:18:01'),(420,225,'action complete via WP Cron','2022-11-10 16:18:01','2022-11-10 16:18:01'),(421,226,'action created','2022-11-12 18:11:08','2022-11-12 18:11:08'),(422,226,'action started via WP Cron','2022-11-12 18:14:54','2022-11-12 18:14:54'),(423,226,'action complete via WP Cron','2022-11-12 18:14:54','2022-11-12 18:14:54');
/*!40000 ALTER TABLE `wp1j_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_commentmeta`
--

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

--
-- Dumping data for table `wp1j_commentmeta`
--

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

--
-- Table structure for table `wp1j_comments`
--

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

--
-- Dumping data for table `wp1j_comments`
--

LOCK TABLES `wp1j_comments` WRITE;
/*!40000 ALTER TABLE `wp1j_comments` DISABLE KEYS */;
INSERT INTO `wp1j_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-09-10 01:08:58','2021-09-10 01:08:58','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://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,1,'Visit %domain_as_name%','eduyn91or7@gmail.com','https://israel-escort-chron.cf','185.34.33.2','2022-02-11 14:19:45','2022-02-11 14:19:45','Im very pleased to find this site. I need to to thank you for your time due to this fantastic read!! I definitely savored every part of it and I have you saved as a favorite to look at new things in your website.} {<a href=\"https://israily-escort-mort.cf\" rel=\"nofollow ugc\">visit the following webpage</a>|<a href=\"https://cus-israil-lover.ga\" rel=\"nofollow ugc\">Visit %url_domain%</a>|<a href=\"https://sorp-escort-israel.tk\" rel=\"nofollow ugc\">visit the following page</a>|<a href=\"https://ap-israily-girls.cf\" rel=\"nofollow ugc\">Visit Home Page</a>|<a href=\"https://cus-israil-lover.cf\" rel=\"nofollow ugc\">visit the following internet site</a>|<a href=\"https://cus-israil-lover.gq\" rel=\"nofollow ugc\">visit</a>|<a href=\"https://niy-lover-israil.cf\" rel=\"nofollow ugc\">visit the following internet page</a>|<a href=\"https://grad-israel-girls.cf\" rel=\"nofollow ugc\">Visit %domain_as_name%</a>|<a href=\"https://sorp-escort-israel.cf\" rel=\"nofollow ugc\">visit my web page</a>|<a href=\"https://israil-escort-pie.tk\" rel=\"nofollow ugc\">visit the following webpage</a>',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56','comment',0,0),(3,1,'דירות דיסקרטיות ברמת גן','c53ucg@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%a8%d7%9e%d7%aa-%d7%92%d7%9f/','109.70.100.21','2022-03-27 12:23:49','2022-03-27 12:23:49','This is the perfect webpage for everyone who wishes to understand this topic. You realize so much its almost hard to argue with you (not that I personally would want toÖHaHa). You definitely put a brand new spin on a subject that has been written about for a long time. Great stuff, just great!',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36','comment',0,0),(4,1,'נערות ליווי בחיפה','w58gtyvzt@gmail.com','https://israelnightclub.com/%d7%a0%d7%a2%d7%a8%d7%95%d7%aa-%d7%9c%d7%99%d7%95%d7%95%d7%99-%d7%91%d7%97%d7%99%d7%a4%d7%94/','185.193.52.180','2022-03-27 14:26:35','2022-03-27 14:26:35','This is the right website for anybody who wants to find out about this topic. You understand a whole lot its almost tough to argue with you (not that I personally would want toÖHaHa). You definitely put a new spin on a topic which has been written about for years. Excellent stuff, just excellent!',0,'0','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0;  Trident/5.0)','comment',0,0),(5,1,'israelxclub.co.il','n0uga6h@gmail.com','https://www.israelxclub.co.il/','23.154.177.3','2022-03-30 01:49:45','2022-03-30 01:49:45','May I simply say what a relief to uncover somebody that really understands what theyre discussing over the internet. You certainly know how to bring a problem to light and make it important. More and more people really need to check this out and understand this side of the story. I was surprised that youre not more popular because you certainly have the gift.',0,'0','Mozilla/4.0 (Windows; U; Windows NT 5.0; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.33 Safari/532.0','comment',0,0),(6,1,'נערות ליווי בתל אביב','duq1b9fctj@gmail.com','https://israel-lady.co.il/%D7%A0%D7%A2%D7%A8%D7%95%D7%AA-%D7%9C%D7%99%D7%95%D7%95%D7%99-%D7%91%D7%AA%D7%9C-%D7%90%D7%91%D7%99%D7%91/','95.214.54.101','2022-04-12 06:29:01','2022-04-12 06:29:01','I was pretty pleased to discover this great site. I need to to thank you for your time for this particularly fantastic read!! I definitely appreciated every part of it and I have you book marked to see new stuff on your blog.',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20100101 Firefox/14.0.1','comment',0,0),(7,1,'romantik69.co.il','81n56v@gmail.com','https://romantik69.co.il/','109.70.100.22','2022-04-28 05:22:49','2022-04-28 05:22:49','Excellent post. I definitely appreciate this website. Thanks!',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.54 Safari/535.2','comment',0,0),(8,1,'דירות דיסקרטיות בחיפה','fs7xtnaade@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%97%d7%99%d7%a4%d7%94/','154.92.113.135','2022-07-21 22:20:02','2022-07-21 22:20:02','Can I simply say what a comfort to find someone that actually understands what theyre discussing on the net. You actually realize how to bring a problem to light and make it important. More and more people really need to read this and understand this side of your story. I was surprised that youre not more popular since you definitely possess the gift.',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 YaBrowser/15.10.2454.3658 Safari/537.36','comment',0,0),(9,1,'דירות דיסקרטיות ברמת גן','1sxx1dsmq@gmail.com','https://www.israelxclub.co.il/girls-cat/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%A8%D7%9E%D7%AA-%D7%92%D7%9F/','154.85.124.39','2022-08-20 21:28:53','2022-08-20 21:28:53','Im excited to discover this site. I need to to thank you for your time for this fantastic read!! I definitely liked every little bit of it and I have you book-marked to check out new things on your website.',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','comment',0,0),(10,1,'דירות דיסקרטיות בצפון','7kk5lxv@gmail.com','https://israelnightclub.com/apartments/%D7%93%D7%99%D7%A8%D7%95%D7%AA-%D7%93%D7%99%D7%A1%D7%A7%D7%A8%D7%98%D7%99%D7%95%D7%AA-%D7%91%D7%97%D7%99%D7%A4%D7%94/','45.134.184.243','2022-09-05 07:15:01','2022-09-05 07:15:01','I would like to thank you for the efforts youve put in writing this website. Im hoping to check out the same high-grade blog posts from you later on as well. In truth, your creative writing abilities has inspired me to get my very own blog now ;)',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36 OPR/34.0.2036.42','comment',0,0),(11,1,'Mark','primunesprov1972@gmail.com','https://tnr69-00.top/','188.134.68.55','2022-09-07 20:26:48','2022-09-07 20:26:48','Thanks for your blog, nice to read. Do not stop.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36','comment',0,0),(12,1,'דירות דיסקרטיות בירושלים-israelnightclub.com','zivedc@gmail.com','https://israelnightclub.com/apartments/%d7%93%d7%99%d7%a8%d7%95%d7%aa-%d7%93%d7%99%d7%a1%d7%a7%d7%a8%d7%98%d7%99%d7%95%d7%aa-%d7%91%d7%99%d7%a8%d7%95%d7%a9%d7%9c%d7%99%d7%9d/','37.35.42.40','2022-09-21 08:44:41','2022-09-21 08:44:41','Everything is very open with a really clear description of the issues. It was definitely informative. Your website is useful. Thank you for sharing!',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36','comment',0,0),(13,1,'Working at Walmart','ben.wlmrt@gmail.com','https://workingatmart.com','8.41.37.211','2022-11-01 21:17:21','2022-11-01 21:17:21','Thx!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `wp1j_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_itsec_bans`
--

DROP TABLE IF EXISTS `wp1j_itsec_bans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_bans` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `host` varchar(64) NOT NULL,
  `type` varchar(20) NOT NULL DEFAULT 'ip',
  `created_at` datetime NOT NULL,
  `actor_type` varchar(20) DEFAULT NULL,
  `actor_id` varchar(128) DEFAULT NULL,
  `comment` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `host` (`host`),
  KEY `actor` (`actor_type`,`actor_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_bans`
--

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

--
-- Table structure for table `wp1j_itsec_dashboard_events`
--

DROP TABLE IF EXISTS `wp1j_itsec_dashboard_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_dashboard_events` (
  `event_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `event_slug` varchar(128) NOT NULL DEFAULT '',
  `event_time` datetime NOT NULL,
  `event_count` int(11) unsigned NOT NULL DEFAULT 1,
  `event_consolidated` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`event_id`),
  UNIQUE KEY `event_slug__time__consolidated` (`event_slug`,`event_time`,`event_consolidated`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_dashboard_events`
--

LOCK TABLES `wp1j_itsec_dashboard_events` WRITE;
/*!40000 ALTER TABLE `wp1j_itsec_dashboard_events` DISABLE KEYS */;
INSERT INTO `wp1j_itsec_dashboard_events` VALUES (2,'local-brute-force','2021-09-25 00:00:00',1,1),(4,'local-brute-force','2021-10-04 00:00:00',1,1),(6,'local-brute-force','2021-10-15 00:00:00',1,1),(8,'local-brute-force','2021-11-04 00:00:00',2,1),(10,'local-brute-force','2021-12-11 00:00:00',2,1),(12,'local-brute-force','2022-06-26 00:00:00',2,1),(14,'local-brute-force','2022-07-10 00:00:00',1,1),(16,'local-brute-force','2022-07-15 00:00:00',2,1),(18,'local-brute-force','2022-07-29 00:00:00',2,1),(20,'local-brute-force','2022-09-06 00:00:00',1,1),(22,'local-brute-force','2022-09-21 00:00:00',1,1),(29,'local-brute-force','2022-11-07 00:00:00',10,1),(30,'lockout-host','2022-11-07 00:00:00',2,1),(31,'lockout-user','2022-11-07 00:00:00',2,1);
/*!40000 ALTER TABLE `wp1j_itsec_dashboard_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_itsec_distributed_storage`
--

DROP TABLE IF EXISTS `wp1j_itsec_distributed_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_distributed_storage` (
  `storage_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `storage_group` varchar(40) NOT NULL,
  `storage_key` varchar(40) NOT NULL DEFAULT '',
  `storage_chunk` int(11) NOT NULL DEFAULT 0,
  `storage_data` longtext NOT NULL,
  `storage_updated` datetime NOT NULL,
  PRIMARY KEY (`storage_id`),
  UNIQUE KEY `storage_group__key__chunk` (`storage_group`,`storage_key`,`storage_chunk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_distributed_storage`
--

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

--
-- Table structure for table `wp1j_itsec_fingerprints`
--

DROP TABLE IF EXISTS `wp1j_itsec_fingerprints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_fingerprints` (
  `fingerprint_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `fingerprint_user` bigint(20) unsigned NOT NULL,
  `fingerprint_hash` char(32) NOT NULL,
  `fingerprint_created_at` datetime NOT NULL,
  `fingerprint_approved_at` datetime NOT NULL,
  `fingerprint_data` longtext NOT NULL,
  `fingerprint_snapshot` longtext NOT NULL,
  `fingerprint_last_seen` datetime NOT NULL,
  `fingerprint_uses` int(11) NOT NULL DEFAULT 0,
  `fingerprint_status` varchar(20) NOT NULL,
  `fingerprint_uuid` char(36) NOT NULL,
  PRIMARY KEY (`fingerprint_id`),
  UNIQUE KEY `fingerprint_user__hash` (`fingerprint_user`,`fingerprint_hash`),
  UNIQUE KEY `fingerprint_uuid` (`fingerprint_uuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_fingerprints`
--

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

--
-- Table structure for table `wp1j_itsec_geolocation_cache`
--

DROP TABLE IF EXISTS `wp1j_itsec_geolocation_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_geolocation_cache` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_host` varchar(40) NOT NULL,
  `location_lat` decimal(10,8) NOT NULL,
  `location_long` decimal(11,8) NOT NULL,
  `location_label` varchar(255) NOT NULL,
  `location_credit` varchar(255) NOT NULL,
  `location_time` datetime NOT NULL,
  PRIMARY KEY (`location_id`),
  UNIQUE KEY `location_host` (`location_host`),
  KEY `location_time` (`location_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_geolocation_cache`
--

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

--
-- Table structure for table `wp1j_itsec_lockouts`
--

DROP TABLE IF EXISTS `wp1j_itsec_lockouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_lockouts` (
  `lockout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lockout_type` varchar(25) NOT NULL,
  `lockout_start` datetime NOT NULL,
  `lockout_start_gmt` datetime NOT NULL,
  `lockout_expire` datetime NOT NULL,
  `lockout_expire_gmt` datetime NOT NULL,
  `lockout_host` varchar(40) DEFAULT NULL,
  `lockout_user` bigint(20) unsigned DEFAULT NULL,
  `lockout_username` varchar(60) DEFAULT NULL,
  `lockout_active` int(1) NOT NULL DEFAULT 1,
  `lockout_context` text DEFAULT NULL,
  PRIMARY KEY (`lockout_id`),
  KEY `lockout_expire_gmt` (`lockout_expire_gmt`),
  KEY `lockout_host` (`lockout_host`),
  KEY `lockout_user` (`lockout_user`),
  KEY `lockout_username` (`lockout_username`),
  KEY `lockout_active` (`lockout_active`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_lockouts`
--

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

--
-- Table structure for table `wp1j_itsec_logs`
--

DROP TABLE IF EXISTS `wp1j_itsec_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `module` varchar(50) NOT NULL DEFAULT '',
  `code` varchar(100) NOT NULL DEFAULT '',
  `data` longtext NOT NULL,
  `type` varchar(20) NOT NULL DEFAULT 'notice',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `init_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `memory_current` bigint(20) unsigned NOT NULL DEFAULT 0,
  `memory_peak` bigint(20) unsigned NOT NULL DEFAULT 0,
  `url` varchar(500) NOT NULL DEFAULT '',
  `blog_id` bigint(20) NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `remote_ip` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `module` (`module`),
  KEY `code` (`code`),
  KEY `type` (`type`),
  KEY `timestamp` (`timestamp`),
  KEY `init_timestamp` (`init_timestamp`),
  KEY `user_id` (`user_id`),
  KEY `blog_id` (`blog_id`)
) ENGINE=MyISAM AUTO_INCREMENT=479 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_logs`
--

LOCK TABLES `wp1j_itsec_logs` WRITE;
/*!40000 ALTER TABLE `wp1j_itsec_logs` DISABLE KEYS */;
INSERT INTO `wp1j_itsec_logs` VALUES (459,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-20 21:39:11','2022-11-20 21:39:10',12378128,21093168,'http://flaphotography.com/',1,0,'117.123.14.7'),(415,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-26 19:33:30','2022-10-26 19:33:23',60053904,60445800,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'217.21.95.126'),(463,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-24 22:23:10','2022-11-24 22:23:09',12366904,21081944,'https://flaphotography.com/',1,0,'196.196.31.139'),(464,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-25 22:39:01','2022-11-25 22:39:00',12366568,21081608,'http://flaphotography.com/',1,0,'149.34.242.230'),(467,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-28 23:04:25','2022-11-28 23:04:24',12771104,21523376,'wp-cron',1,0,'104.247.76.75'),(471,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-03 00:04:37','2022-12-03 00:04:36',12771976,21524248,'wp-cron',1,0,'104.247.76.75'),(419,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-30 20:19:00','2022-10-30 20:18:58',59686472,59976360,'http://www.flaphotography.com/',1,0,'66.249.66.136'),(420,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-31 20:42:54','2022-10-31 20:42:52',59597616,59712928,'https://flaphotography.com/divi_bars-sitemap.xml',1,0,'207.46.13.89'),(447,0,'notification_center','send::digest','a:2:{s:10:\"recipients\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:42:\"[flaphotography.com] Daily Security Digest\";}','debug','2022-11-08 19:29:30','2022-11-08 19:29:29',12515352,21092368,'http://flaphotography.com/',1,0,'207.46.13.157'),(465,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-26 23:04:23','2022-11-26 23:04:22',12771104,21523376,'wp-cron',1,0,'104.247.76.75'),(468,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-29 23:10:45','2022-11-29 23:10:44',12191776,21066560,'http://www.flaphotography.com/',1,0,'40.77.167.60'),(470,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-01 23:50:58','2022-12-01 23:50:57',12369432,21084448,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'159.69.212.183'),(472,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-04 00:05:08','2022-12-04 00:05:07',12380216,21095248,'https://flaphotography.com/robots.txt',1,0,'114.119.137.85'),(400,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-11 11:10:36','2022-10-11 11:10:34',46626280,47018152,'https://flaphotography.com/robots.txt',1,0,'40.77.167.98'),(425,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"487\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667789347.354569911956787109375;s:12:\"REQUEST_TIME\";i:1667789347;}}','notice','2022-11-07 02:49:08','2022-11-07 02:49:07',12370520,20667088,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(474,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-06 00:38:36','2022-12-06 00:38:35',12367056,21082096,'http://flaphotography.com/',1,0,'109.123.236.121'),(476,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-08 01:04:39','2022-12-08 01:04:38',12763848,21516120,'wp-cron',1,0,'104.247.76.75'),(477,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-09 01:04:39','2022-12-09 01:04:39',12772040,21524312,'wp-cron',1,0,'104.247.76.75'),(478,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-10 01:37:20','2022-12-10 01:37:20',12360360,21075360,'http://flaphotography.com/wp-content/plugins/iwp-client/readme.txt',1,0,'20.56.146.177'),(409,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-20 16:50:51','2022-10-20 16:50:48',11193088,11547880,'http://flaphotography.com/robots.txt',1,0,'114.119.133.67'),(402,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-13 12:34:34','2022-10-13 12:34:32',57931656,58290336,'https://flaphotography.com/robots.txt',1,0,'51.222.253.14'),(403,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-14 13:03:18','2022-10-14 13:03:15',59008872,59365168,'https://flaphotography.com/',1,0,'157.55.39.215'),(404,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-15 13:36:21','2022-10-15 13:36:19',58965984,59311456,'https://www.flaphotography.flapstart.com/',1,0,'167.94.138.45'),(411,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-22 18:03:44','2022-10-22 18:03:41',60741360,61094896,'https://flaphotography.com/robots.txt',1,0,'185.191.171.41'),(421,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-01 20:47:23','2022-11-01 20:47:22',60343544,60732072,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'208.109.32.14'),(451,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-12 20:05:13','2022-11-12 20:05:12',12205240,21080024,'https://flaphotography.com/',1,0,'103.209.252.16'),(452,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-13 20:05:22','2022-11-13 20:05:22',12205992,21080768,'http://flaphotography.com/robots.txt',1,0,'114.119.152.196'),(405,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-16 15:30:05','2022-10-16 15:30:01',58865248,59047000,'https://flaphotography.com/sitemap_index.xml',1,0,'114.119.141.40'),(407,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-18 15:47:32','2022-10-18 15:47:27',8022600,8046416,'https://flaphotography.com/robots.txt',1,0,'51.222.253.7'),(408,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-19 16:17:52','2022-10-19 16:17:49',61330600,61675144,'http://www.flaphotography.flapstart.com/',1,0,'198.235.24.37'),(410,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-21 17:20:00','2022-10-21 17:19:57',11176296,11531064,'https://flaphotography.com/',1,0,'69.171.231.6'),(412,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-23 18:05:38','2022-10-23 18:05:36',60734824,61088336,'http://flaphotography.com/',1,0,'34.221.206.12'),(413,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-24 18:08:01','2022-10-24 18:07:59',60740704,61094216,'http://flaphotography.com/',1,0,'93.191.158.26'),(414,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-25 18:27:57','2022-10-25 18:27:50',58038368,58433088,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'200.80.43.110'),(416,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-27 19:39:26','2022-10-27 19:39:26',62270664,62613840,'https://flaphotography.com/',1,0,'199.244.88.221'),(417,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-28 19:41:08','2022-10-28 19:41:07',59722704,60078128,'http://flaphotography.com/',1,0,'34.94.255.58'),(418,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-29 20:04:31','2022-10-29 20:04:29',59855064,60210464,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'103.124.95.20'),(422,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-02 21:30:41','2022-11-02 21:30:39',59735736,60091912,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'159.203.80.245'),(423,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-03 21:37:23','2022-11-03 21:37:23',8103792,8127576,'https://flaphotography.com/',1,0,'5.18.85.151'),(446,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-08 19:29:30','2022-11-08 19:29:29',12217584,21092368,'http://flaphotography.com/',1,0,'207.46.13.157'),(448,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-09 19:53:59','2022-11-09 19:53:59',12205728,21080512,'http://flaphotography.com/',1,0,'160.20.9.212'),(458,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-19 21:12:10','2022-11-19 21:12:09',12367256,21083712,'http://flaphotography.com/',1,0,'164.92.225.122'),(461,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-22 22:04:22','2022-11-22 22:04:21',12762400,21514672,'wp-cron',1,0,'104.247.76.75'),(475,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-07 01:04:38','2022-12-07 01:04:37',12771592,21523864,'wp-cron',1,0,'104.247.76.75'),(427,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"488\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667789351.692513942718505859375;s:12:\"REQUEST_TIME\";i:1667789351;}}','notice','2022-11-07 02:49:12','2022-11-07 02:49:12',12370648,20667088,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(426,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"486\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667789349.530476093292236328125;s:12:\"REQUEST_TIME\";i:1667789349;}}','notice','2022-11-07 02:49:10','2022-11-07 02:49:09',12370520,20667088,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(449,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-10 20:04:51','2022-11-10 20:04:50',12609688,21521704,'wp-cron',1,0,'104.247.76.75'),(450,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-11 20:04:51','2022-11-11 20:04:51',12609752,21521768,'wp-cron',1,0,'104.247.76.75'),(460,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-21 21:48:08','2022-11-21 21:48:08',12364424,21079464,'https://flaphotography.com/',1,0,'93.159.230.89'),(457,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-18 21:04:56','2022-11-18 21:04:55',12770144,21522416,'wp-cron',1,0,'104.247.76.75'),(456,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-17 20:56:06','2022-11-17 20:56:06',12207656,21082416,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'51.144.238.41'),(462,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-23 22:04:24','2022-11-23 22:04:24',12783072,21535344,'wp-cron',1,0,'104.247.76.75'),(401,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-12 11:20:46','2022-10-12 11:20:44',57927120,58285808,'http://flaphotography.com/',1,0,'85.31.46.226'),(455,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-16 20:41:40','2022-11-16 20:41:39',12209576,21084352,'https://flaphotography.flapstart.com/',1,0,'35.92.139.144'),(453,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-14 20:09:24','2022-11-14 20:09:24',12205904,21080664,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'162.214.123.41'),(454,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-15 20:34:58','2022-11-15 20:34:57',12217576,21092352,'http://flaphotography.com/radio.txt',1,0,'94.23.31.9'),(466,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-27 23:04:23','2022-11-27 23:04:23',12771104,21523376,'wp-cron',1,0,'104.247.76.75'),(469,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-30 23:20:49','2022-11-30 23:20:48',12360656,21075672,'http://flaphotography.com/-/-/-/-/-/-/-/-/-/-/',1,0,'92.249.44.225'),(473,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-12-05 00:36:09','2022-12-05 00:36:09',12200768,21075528,'http://www.flaphotography.com/data/admin/allowurl.txt',1,0,'182.151.45.157'),(406,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-10-17 15:35:53','2022-10-17 15:35:50',59010400,59366688,'https://flaphotography.com/divi_overlay/20-off-fashion-contact/',1,0,'185.191.171.21'),(424,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-06 13:23:09','2022-11-06 13:23:09',9923392,11946464,'https://flaphotography.com/',1,0,'173.231.218.25'),(428,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"490\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667789353.819580078125;s:12:\"REQUEST_TIME\";i:1667789353;}}','notice','2022-11-07 02:49:14','2022-11-07 02:49:14',12370784,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(429,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"491\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667789355.9542529582977294921875;s:12:\"REQUEST_TIME\";i:1667789355;}}','notice','2022-11-07 02:49:17','2022-11-07 02:49:16',12549160,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(430,0,'lockout','host-lockout::139.99.131.38','a:14:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.99.131.38\";s:7:\"user_id\";i:1;s:8:\"username\";b:0;s:14:\"module_details\";a:6:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:5:\"label\";s:11:\"Brute Force\";s:4:\"host\";i:5;s:4:\"user\";i:5;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2022-11-07 02:49:16\";s:17:\"lockout_start_gmt\";s:19:\"2022-11-07 02:49:16\";s:15:\"lockout_context\";s:412:\"O:40:\"iThemesSecurity\\Lib\\Lockout\\Host_Context\":5:{s:46:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0host\";s:13:\"139.99.131.38\";s:55:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_user_id\";i:1;s:56:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_username\";N;s:62:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0user_limit_triggered\";b:1;s:51:\"\0iThemesSecurity\\Lib\\Lockout\\Context\0lockout_module\";s:11:\"brute_force\";}\";s:14:\"lockout_expire\";s:19:\"2022-11-07 03:04:16\";s:18:\"lockout_expire_gmt\";s:19:\"2022-11-07 03:04:16\";s:12:\"lockout_host\";s:13:\"139.99.131.38\";}','action','2022-11-07 02:49:17','2022-11-07 02:49:16',12582752,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(431,0,'lockout','user-lockout::1','a:14:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.99.131.38\";s:7:\"user_id\";i:1;s:8:\"username\";b:0;s:14:\"module_details\";a:6:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:5:\"label\";s:11:\"Brute Force\";s:4:\"host\";i:5;s:4:\"user\";i:5;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2022-11-07 02:49:16\";s:17:\"lockout_start_gmt\";s:19:\"2022-11-07 02:49:16\";s:15:\"lockout_context\";s:412:\"O:40:\"iThemesSecurity\\Lib\\Lockout\\Host_Context\":5:{s:46:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0host\";s:13:\"139.99.131.38\";s:55:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_user_id\";i:1;s:56:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_username\";N;s:62:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0user_limit_triggered\";b:1;s:51:\"\0iThemesSecurity\\Lib\\Lockout\\Context\0lockout_module\";s:11:\"brute_force\";}\";s:14:\"lockout_expire\";s:19:\"2022-11-07 03:04:16\";s:18:\"lockout_expire_gmt\";s:19:\"2022-11-07 03:04:16\";s:12:\"lockout_user\";i:1;}','action','2022-11-07 02:49:17','2022-11-07 02:49:16',12584456,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(432,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:46:\"[flaphotography.com] Site Lockout Notification\";}','debug','2022-11-07 02:49:17','2022-11-07 02:49:16',12635632,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(433,0,'notification_center','send_failed::lockout','a:1:{s:5:\"error\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:14:\"wp_mail_failed\";a:1:{i:0;s:35:\"SMTP Error: Could not authenticate.\";}}s:10:\"error_data\";a:1:{s:14:\"wp_mail_failed\";a:6:{s:2:\"to\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:46:\"[flaphotography.com] Site Lockout Notification\";s:7:\"message\";s:47009:\"\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-US\">\n\n<head>\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n	<title>Site Lockout Notification</title>\n	<meta name=\"viewport\" content=\"width=device-width\">\n\n	<style type=\"text/css\">\n		/* From: https://litmus.com/community/learning/13-foundations-email-coding-101 */\n\n		/* GENERAL STYLE RESETS */\n		body,#body-table,#body-cell{height:100%!important;width:100%!important;margin:0;padding:0;}\n		img,aimg{border:0;outline:none;text-decoration:none;}\n		.imageFix{display:block;}\n		table,td{border-collapse:collapse;border-spacing:0;}\n\n		/* CLIENT-SPECIFIC RESETS */\n		.ReadMsgBody{width:100%;}\n		.ExternalClass{width:100%;}\n		.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{line-height:100%;}\n		table,td{mso-table-lspace:0pt;mso-table-rspace:0pt;}\n		img{-ms-interpolation-mode:bicubic;}\n		body,table,td,p,a,li,blockquote{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}\n\n\n		h1,h2,h3,h4,h5,h6{color:#202020;font-family:Helvetica;font-size:20px;font-weight:bold;line-height:150%;margin:0;padding:0;text-align:center;}\n		p{font-family:Helvetica;font-size:16px;line-height:150%;margin-top:10px;margin-right:0;margin-bottom:10px;margin-left:0;padding:0;text-align:center;}\n		a{color:#0084CB;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;text-decoration:none;}\n		img{height:auto;}\n\n		body,#body-table{background-color:#FFFFFF;}\n		#body-cell{padding-bottom:20px;}\n		.section-padding{padding-top:20px;padding-right:20px;padding-left:20px;}\n		.section-padding-bottom{padding-bottom:20px;}\n		.container-cell{color:#808080;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;padding-bottom:20px;}\n		#top-banner{background-color:#FFCE08;}\n		#top-banner .container-cell{color:#413F39;font-size:13px;}\n		#top-logo .container-cell{padding-top:20px;}\n		#title-container h1{font-size:34px;}\n		.info-box{padding-top:20px;padding-bottom:20px;}\n		.info-box .container{border:1px solid #CDCECE;background-color:#F2F2F2;}\n		.info-box .section-padding{padding-top:40px;padding-right:40px;padding-left:40px;}\n		.info-box .container-cell{padding-bottom:40px;}\n		.info-box .info-icon{width:33px;height:23px;vertical-align:middle;}\n		.section-heading .container-cell{padding-bottom:0;}\n		.section-heading h4{color:#0084CB;font-size:16px;}\n		.section-heading h4 img{padding-top:2px;padding-right:5px;vertical-align:top;}\n		.lockouts-summary .container.left-column{margin-right:60px;}\n		.lockouts-summary h4{color:#ACAAAA;font-size:16px;font-weight:normal;}\n		.lockouts-summary p{color:#505050;font-size:30px;font-weight:bold;}\n		.table{border:1px solid #cdcece;color: #808080;font-family:Helvetica;font-size:14px;}\n		.table th,.table td{border:1px solid #cdcece;padding:10px;}\n		.table th{text-align:left;font-weight:bold;padding:5px 10px;}\n		.table .row-label{font-style:italic;}\n		.table a,.table b{font-size:14px;}\n		.large-text h4{color:#505050;margin-bottom:10px;}\n		.details-box-container{padding-top:20px;padding-bottom:20px;}\n		.details-box{background-color:#E4EEF7;border:1px solid #CDCECE;}\n		.details-box .container-cell{color:#6A6A6A;}\n		.divider .divider-border{border-top-width:1px;border-top-style:solid;border-top-color:#E8E8E8;}\n		.divider .container-cell{line-height:1px;padding-bottom:20px;width:450px;}\n		.module-button .border-radius{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}\n		.module-button a{background-color:#FFCD08;border:1px solid #FFCD08;color:#2E280E;display:inline-block;font-size:18px;font-weight:bold;line-height:100%;padding-top:20px;padding-right:30px;padding-bottom:20px;padding-left:30px;}\n		.pro-callout{padding-top:20px;}\n		.pro-callout-background{background-color:#0B1A23;}\n		.pro-callout .section-padding{padding-top:40px;}\n		.pro-callout .two-factor{color:#FFFFFF;margin-top:20px;margin-bottom:20px;}\n		.pro-callout .module-button a{font-size:30px;}\n		.pro-callout .why-pro{color:#999999;font-style:italic;margin-top:20px;margin-bottom:20px;}\n		.footer-heading h2{color:#002030;font-size:26px;}\n		.pro-flag{background-color:#FFCC00;color:#000000;font-size:10px;display:inline-block;padding:3px;line-height:1;position:relative;bottom:10px;text-transform:uppercase;}\n		#security-guide-container{border:1px solid #CDCECE;background-color:#D3E8E9;}\n		#security-guide .container-cell{color:#6C6C6C;text-align:left;}\n		#security-guide h4{color:#6C6C6C;font-size:18px;padding-bottom:10px;text-align:left;}\n		#security-guide a{font-weight:bold;}\n		#footer-source-details .container-cell{line-height:200%;padding-top:60px;padding-bottom:0;}\n		#footer-source-details a{font-size:11px;font-weight:bold;line-height:200%;}\n		.template-container {max-width: 600px !important;}\n\n		@media only screen and (max-width:600px){\n			body{width:100% !important;min-width:100% !important;}\n			#body-cell{padding:10px !important;}\n			#main-container, .container{width:100% !important;}\n			.preserve-ratio{height:auto !important;width:100% !important;}\n			.container-cell-bottom{padding-top:20px !important;}\n			.lockouts-summary .container{width:auto !important;}\n		}\n\n		@media only screen and (max-width:450px){\n			.divider .container-cell{width:auto !important;}\n		}\n	</style>\n</head>\n\n<body style=\"margin: 0;padding: 0;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n	<center>\n		<table id=\"body-table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n			<tr>\n				<td id=\"body-cell\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;padding-bottom: 20px;height: 100%!important;width: 100%!important;\">\n					<table id=\"main-container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td id=\"top-banner\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFCE08;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #413F39;font-family: Helvetica;font-size: 13px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	Site Lockout Notification\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"top-logo\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;padding-top: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/logo.png\" style=\"max-width: 300px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" alt=\"\" align=\"center\">\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"title-container\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<h1 style=\"color: #202020;font-family: Helvetica;font-size: 34px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Site Lockout Notification</h1>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border:1px solid #CDCECE; font-family: Helvetica;\">\n						<tr>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Host/User</th>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Lockout in Effect Until</th>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Reason</th>\n						</tr>\n												<tr>\n							<td class=\"row-label\" style=\"font-style:italic;border:1px solid #cdcece;padding:10px;\"><b>User:</b> KCFOTO92</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">2022-11-07 03:04:16</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">too many bad login attempts</td>\n						</tr>\n						<tr>\n							<td class=\"row-label\" style=\"font-style:italic;border:1px solid #cdcece;padding:10px;\"><b>Host:</b> <a href=\"http://www.iptrackeronline.com/ithemes.php?ip_address=139.99.131.38\">139.99.131.38</a></td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">2022-11-07 03:04:16</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">too many bad login attempts</td>\n						</tr>\n\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n						<tr>\n							<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	Release lockouts from the Active Lockouts section of the settings page.\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding section-padding-bottom\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;padding-bottom: 20px;\">\n								<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"module-button\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"border-radius\" align=\"center\" bgcolor=\"#FFCD08\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">\n														<a class=\"border-radius\" href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #2E280E;font-family: Helvetica;font-size: 18px;line-height: 100%;text-align: center;text-decoration: none;background-color: #FFCD08;border: 1px solid #FFCD08;display: inline-block;font-weight: bold;padding-top: 20px;padding-right: 30px;padding-bottom: 20px;padding-left: 30px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">Visit Settings Page</a>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n						<tr>\n							<td class=\"pro-callout\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;\">\n								<table class=\"pro-callout-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #0B1A23;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"container\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td align=\"center\" valign=\"top\" width=\"600\" class=\"section-padding\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 40px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td valign=\"top\" class=\"container-cell\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/pro_logo_no_text.png\" style=\"max-width: 100px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"100\" alt=\"\" align=\"center\">\n																	<p class=\"two-factor\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #FFFFFF;\">Want two-factor authentication, scheduled site scanning, ticketed support and more?</p>\n																	<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																		<tr>\n																			<td style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																				<table class=\"module-button\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																					<tr>\n																						<td class=\"border-radius\" align=\"center\" bgcolor=\"#FFCD08\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">\n																							<a href=\"https://ithemes.com/security/#plugin-pricing\" target=\"_blank\" class=\"border-radius\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #2E280E;font-family: Helvetica;font-size: 30px;line-height: 100%;text-align: center;text-decoration: none;background-color: #FFCD08;border: 1px solid #FFCD08;display: inline-block;font-weight: bold;padding-top: 20px;padding-right: 30px;padding-bottom: 20px;padding-left: 30px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">Get iThemes Security Pro</a>\n																						</td>\n																					</tr>\n																				</table>\n																			</td>\n																		</tr>\n																	</table>\n																	<p class=\"why-pro\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #999999;font-style: italic;\">Why go Pro? <a href=\"https://ithemes.com/security/why-go-pro/\">Check out the Free/Pro comparison chart.</a></p>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Security Resources</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/article_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/category/wordpress-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Articles</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read the latest in WordPress Security news, tips, and updates on <a href=\"https://ithemes.com/category/wordpress-security/\">iThemes Blog</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/video_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/tutorial/category/ithemes-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Tutorials</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Make the most of iThemes Security features with our <a href=\"https://ithemes.com/tutorial/category/ithemes-security/\">free iThemes Security tutorials</a>.</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"divider\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"divider-border\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border-top-width: 1px;border-top-style: solid;border-top-color: #E8E8E8;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 1px;text-align: center;padding-bottom: 20px;width: 450px;\">\n											&nbsp;\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Help &amp; Support</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/documentation_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"http://ithemes.com/codex/page/IThemes_Security\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Documentation</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read iThemes Security documentation and Frequently Asked Questions on <a href=\"http://ithemes.com/codex/page/IThemes_Security\">the Codex</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/support_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://members.ithemes.com/panel/helpdesk.php\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Support</a>\n												<span class=\"pro-flag\" style=\"background-color: #FFCC00;color: #000000;font-size: 10px;display: inline-block;padding: 3px;line-height: 1;position: relative;bottom: 10px;text-transform: uppercase;\">Pro</span>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Pro customers can contact <a href=\"https://members.ithemes.com/panel/helpdesk.php\">iThemes Helpdesk</a> for help. Our support team answers questions Monday – Friday, 8am – 5pm (CST).</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"security-guide\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table id=\"security-guide-container\" class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border: 1px solid #CDCECE;background-color: #D3E8E9;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"104\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"section-padding-bottom\" align=\"left\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/wp_security_book.png\" style=\"max-width: 84px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"84\" alt=\"\" align=\"center\">\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"454\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6C6C6C;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: left;padding-bottom: 20px;\">\n											<h4 style=\"color: #6C6C6C;font-family: Helvetica;font-size: 18px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: left;padding-bottom: 10px;\">Free WordPress Security Guide</h4>\n											Learn simple WordPress security tips — including 3 kinds of security your site needs and 4 best security practices for keeping your WordPress site safe with our <a href=\"https://ithemes.com/publishing/wordpress-security/\">free guide</a>.\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"footer-source-details\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 200%;text-align: center;padding-bottom: 0;padding-top: 60px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/footer_logo.png\" style=\"max-width: 50px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"50\" alt=\"\" align=\"center\"><br>\n											<br>\n											<span style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #666f72;font-family: Helvetica;font-size: 11px;line-height: 200%;text-align: center;text-decoration: none;font-weight: bold;\">\n												This email was generated by the iThemes Security plugin.<br>To unsubscribe from these updates, visit the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec\" style=\"color: #0084CB\">Settings page</a> in the iThemes Security plugin menu.\n											</span>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>					</table>\n				</td>\n			</tr>\n		</table>\n	</center>\n</body>\n\n</html>\n\";s:7:\"headers\";a:0:{}s:11:\"attachments\";a:0:{}s:24:\"phpmailer_exception_code\";i:0;}}s:18:\"\0*\0additional_data\";a:0:{}}}','error','2022-11-07 02:49:20','2022-11-07 02:49:16',12792560,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'139.99.131.38'),(434,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"492\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667826925.225140094757080078125;s:12:\"REQUEST_TIME\";i:1667826925;}}','notice','2022-11-07 13:15:26','2022-11-07 13:15:25',12370912,20667344,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(435,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"488\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667826929.3652350902557373046875;s:12:\"REQUEST_TIME\";i:1667826929;}}','notice','2022-11-07 13:15:30','2022-11-07 13:15:29',12370776,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(436,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"490\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667826931.4456999301910400390625;s:12:\"REQUEST_TIME\";i:1667826931;}}','notice','2022-11-07 13:15:32','2022-11-07 13:15:31',12370912,20667344,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(437,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"484\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667826933.468018054962158203125;s:12:\"REQUEST_TIME\";i:1667826933;}}','notice','2022-11-07 13:15:34','2022-11-07 13:15:33',12370640,20667208,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(438,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:197:\"<strong>Error</strong>: The password you entered for the username <strong>KCFOTO92</strong> is incorrect. <a href=\"https://flaphotography.com/defotocom/?action=lostpassword\">Lost your password?</a>\";}}s:10:\"error_data\";a:0:{}s:18:\"\0*\0additional_data\";a:0:{}}s:8:\"username\";s:8:\"KCFOTO92\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:14:{s:14:\"CONTENT_LENGTH\";s:3:\"486\";s:12:\"CONTENT_TYPE\";s:15:\"application/xml\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:18:\"flaphotography.com\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:43:\"/home/flapst5/flaphotography.com/xmlrpc.php\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:18:\"REQUEST_TIME_FLOAT\";d:1667826935.470654010772705078125;s:12:\"REQUEST_TIME\";i:1667826935;}}','notice','2022-11-07 13:15:36','2022-11-07 13:15:35',12370648,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(439,0,'lockout','host-lockout::159.223.44.164','a:14:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"159.223.44.164\";s:7:\"user_id\";i:1;s:8:\"username\";b:0;s:14:\"module_details\";a:6:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:5:\"label\";s:11:\"Brute Force\";s:4:\"host\";i:5;s:4:\"user\";i:5;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2022-11-07 13:15:35\";s:17:\"lockout_start_gmt\";s:19:\"2022-11-07 13:15:35\";s:15:\"lockout_context\";s:413:\"O:40:\"iThemesSecurity\\Lib\\Lockout\\Host_Context\":5:{s:46:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0host\";s:14:\"159.223.44.164\";s:55:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_user_id\";i:1;s:56:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_username\";N;s:62:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0user_limit_triggered\";b:1;s:51:\"\0iThemesSecurity\\Lib\\Lockout\\Context\0lockout_module\";s:11:\"brute_force\";}\";s:14:\"lockout_expire\";s:19:\"2022-11-07 13:30:35\";s:18:\"lockout_expire_gmt\";s:19:\"2022-11-07 13:30:35\";s:12:\"lockout_host\";s:14:\"159.223.44.164\";}','action','2022-11-07 13:15:36','2022-11-07 13:15:35',12404240,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(440,0,'lockout','user-lockout::1','a:14:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"159.223.44.164\";s:7:\"user_id\";i:1;s:8:\"username\";b:0;s:14:\"module_details\";a:6:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:5:\"label\";s:11:\"Brute Force\";s:4:\"host\";i:5;s:4:\"user\";i:5;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2022-11-07 13:15:35\";s:17:\"lockout_start_gmt\";s:19:\"2022-11-07 13:15:35\";s:15:\"lockout_context\";s:413:\"O:40:\"iThemesSecurity\\Lib\\Lockout\\Host_Context\":5:{s:46:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0host\";s:14:\"159.223.44.164\";s:55:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_user_id\";i:1;s:56:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0login_username\";N;s:62:\"\0iThemesSecurity\\Lib\\Lockout\\Host_Context\0user_limit_triggered\";b:1;s:51:\"\0iThemesSecurity\\Lib\\Lockout\\Context\0lockout_module\";s:11:\"brute_force\";}\";s:14:\"lockout_expire\";s:19:\"2022-11-07 13:30:35\";s:18:\"lockout_expire_gmt\";s:19:\"2022-11-07 13:30:35\";s:12:\"lockout_user\";i:1;}','action','2022-11-07 13:15:36','2022-11-07 13:15:35',12405944,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(441,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:46:\"[flaphotography.com] Site Lockout Notification\";}','debug','2022-11-07 13:15:36','2022-11-07 13:15:35',12616864,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(442,0,'notification_center','send_failed::lockout','a:1:{s:5:\"error\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:14:\"wp_mail_failed\";a:1:{i:0;s:35:\"SMTP Error: Could not authenticate.\";}}s:10:\"error_data\";a:1:{s:14:\"wp_mail_failed\";a:6:{s:2:\"to\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:46:\"[flaphotography.com] Site Lockout Notification\";s:7:\"message\";s:47011:\"\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-US\">\n\n<head>\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n	<title>Site Lockout Notification</title>\n	<meta name=\"viewport\" content=\"width=device-width\">\n\n	<style type=\"text/css\">\n		/* From: https://litmus.com/community/learning/13-foundations-email-coding-101 */\n\n		/* GENERAL STYLE RESETS */\n		body,#body-table,#body-cell{height:100%!important;width:100%!important;margin:0;padding:0;}\n		img,aimg{border:0;outline:none;text-decoration:none;}\n		.imageFix{display:block;}\n		table,td{border-collapse:collapse;border-spacing:0;}\n\n		/* CLIENT-SPECIFIC RESETS */\n		.ReadMsgBody{width:100%;}\n		.ExternalClass{width:100%;}\n		.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{line-height:100%;}\n		table,td{mso-table-lspace:0pt;mso-table-rspace:0pt;}\n		img{-ms-interpolation-mode:bicubic;}\n		body,table,td,p,a,li,blockquote{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}\n\n\n		h1,h2,h3,h4,h5,h6{color:#202020;font-family:Helvetica;font-size:20px;font-weight:bold;line-height:150%;margin:0;padding:0;text-align:center;}\n		p{font-family:Helvetica;font-size:16px;line-height:150%;margin-top:10px;margin-right:0;margin-bottom:10px;margin-left:0;padding:0;text-align:center;}\n		a{color:#0084CB;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;text-decoration:none;}\n		img{height:auto;}\n\n		body,#body-table{background-color:#FFFFFF;}\n		#body-cell{padding-bottom:20px;}\n		.section-padding{padding-top:20px;padding-right:20px;padding-left:20px;}\n		.section-padding-bottom{padding-bottom:20px;}\n		.container-cell{color:#808080;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;padding-bottom:20px;}\n		#top-banner{background-color:#FFCE08;}\n		#top-banner .container-cell{color:#413F39;font-size:13px;}\n		#top-logo .container-cell{padding-top:20px;}\n		#title-container h1{font-size:34px;}\n		.info-box{padding-top:20px;padding-bottom:20px;}\n		.info-box .container{border:1px solid #CDCECE;background-color:#F2F2F2;}\n		.info-box .section-padding{padding-top:40px;padding-right:40px;padding-left:40px;}\n		.info-box .container-cell{padding-bottom:40px;}\n		.info-box .info-icon{width:33px;height:23px;vertical-align:middle;}\n		.section-heading .container-cell{padding-bottom:0;}\n		.section-heading h4{color:#0084CB;font-size:16px;}\n		.section-heading h4 img{padding-top:2px;padding-right:5px;vertical-align:top;}\n		.lockouts-summary .container.left-column{margin-right:60px;}\n		.lockouts-summary h4{color:#ACAAAA;font-size:16px;font-weight:normal;}\n		.lockouts-summary p{color:#505050;font-size:30px;font-weight:bold;}\n		.table{border:1px solid #cdcece;color: #808080;font-family:Helvetica;font-size:14px;}\n		.table th,.table td{border:1px solid #cdcece;padding:10px;}\n		.table th{text-align:left;font-weight:bold;padding:5px 10px;}\n		.table .row-label{font-style:italic;}\n		.table a,.table b{font-size:14px;}\n		.large-text h4{color:#505050;margin-bottom:10px;}\n		.details-box-container{padding-top:20px;padding-bottom:20px;}\n		.details-box{background-color:#E4EEF7;border:1px solid #CDCECE;}\n		.details-box .container-cell{color:#6A6A6A;}\n		.divider .divider-border{border-top-width:1px;border-top-style:solid;border-top-color:#E8E8E8;}\n		.divider .container-cell{line-height:1px;padding-bottom:20px;width:450px;}\n		.module-button .border-radius{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}\n		.module-button a{background-color:#FFCD08;border:1px solid #FFCD08;color:#2E280E;display:inline-block;font-size:18px;font-weight:bold;line-height:100%;padding-top:20px;padding-right:30px;padding-bottom:20px;padding-left:30px;}\n		.pro-callout{padding-top:20px;}\n		.pro-callout-background{background-color:#0B1A23;}\n		.pro-callout .section-padding{padding-top:40px;}\n		.pro-callout .two-factor{color:#FFFFFF;margin-top:20px;margin-bottom:20px;}\n		.pro-callout .module-button a{font-size:30px;}\n		.pro-callout .why-pro{color:#999999;font-style:italic;margin-top:20px;margin-bottom:20px;}\n		.footer-heading h2{color:#002030;font-size:26px;}\n		.pro-flag{background-color:#FFCC00;color:#000000;font-size:10px;display:inline-block;padding:3px;line-height:1;position:relative;bottom:10px;text-transform:uppercase;}\n		#security-guide-container{border:1px solid #CDCECE;background-color:#D3E8E9;}\n		#security-guide .container-cell{color:#6C6C6C;text-align:left;}\n		#security-guide h4{color:#6C6C6C;font-size:18px;padding-bottom:10px;text-align:left;}\n		#security-guide a{font-weight:bold;}\n		#footer-source-details .container-cell{line-height:200%;padding-top:60px;padding-bottom:0;}\n		#footer-source-details a{font-size:11px;font-weight:bold;line-height:200%;}\n		.template-container {max-width: 600px !important;}\n\n		@media only screen and (max-width:600px){\n			body{width:100% !important;min-width:100% !important;}\n			#body-cell{padding:10px !important;}\n			#main-container, .container{width:100% !important;}\n			.preserve-ratio{height:auto !important;width:100% !important;}\n			.container-cell-bottom{padding-top:20px !important;}\n			.lockouts-summary .container{width:auto !important;}\n		}\n\n		@media only screen and (max-width:450px){\n			.divider .container-cell{width:auto !important;}\n		}\n	</style>\n</head>\n\n<body style=\"margin: 0;padding: 0;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n	<center>\n		<table id=\"body-table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n			<tr>\n				<td id=\"body-cell\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;padding-bottom: 20px;height: 100%!important;width: 100%!important;\">\n					<table id=\"main-container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td id=\"top-banner\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFCE08;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #413F39;font-family: Helvetica;font-size: 13px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	Site Lockout Notification\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"top-logo\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;padding-top: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/logo.png\" style=\"max-width: 300px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" alt=\"\" align=\"center\">\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"title-container\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<h1 style=\"color: #202020;font-family: Helvetica;font-size: 34px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Site Lockout Notification</h1>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border:1px solid #CDCECE; font-family: Helvetica;\">\n						<tr>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Host/User</th>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Lockout in Effect Until</th>\n							<th style=\"text-align: left;font-weight: bold;padding:5px 10px;border:1px solid #cdcece;\">Reason</th>\n						</tr>\n												<tr>\n							<td class=\"row-label\" style=\"font-style:italic;border:1px solid #cdcece;padding:10px;\"><b>User:</b> KCFOTO92</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">2022-11-07 13:30:35</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">too many bad login attempts</td>\n						</tr>\n						<tr>\n							<td class=\"row-label\" style=\"font-style:italic;border:1px solid #cdcece;padding:10px;\"><b>Host:</b> <a href=\"http://www.iptrackeronline.com/ithemes.php?ip_address=159.223.44.164\">159.223.44.164</a></td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">2022-11-07 13:30:35</td>\n							<td style=\"border:1px solid #cdcece;padding:10px;\">too many bad login attempts</td>\n						</tr>\n\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n						<tr>\n							<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	Release lockouts from the Active Lockouts section of the settings page.\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding section-padding-bottom\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;padding-bottom: 20px;\">\n								<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"module-button\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"border-radius\" align=\"center\" bgcolor=\"#FFCD08\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">\n														<a class=\"border-radius\" href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #2E280E;font-family: Helvetica;font-size: 18px;line-height: 100%;text-align: center;text-decoration: none;background-color: #FFCD08;border: 1px solid #FFCD08;display: inline-block;font-weight: bold;padding-top: 20px;padding-right: 30px;padding-bottom: 20px;padding-left: 30px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">Visit Settings Page</a>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n						<tr>\n							<td class=\"pro-callout\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;\">\n								<table class=\"pro-callout-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #0B1A23;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"container\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td align=\"center\" valign=\"top\" width=\"600\" class=\"section-padding\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 40px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td valign=\"top\" class=\"container-cell\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/pro_logo_no_text.png\" style=\"max-width: 100px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"100\" alt=\"\" align=\"center\">\n																	<p class=\"two-factor\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #FFFFFF;\">Want two-factor authentication, scheduled site scanning, ticketed support and more?</p>\n																	<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																		<tr>\n																			<td style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																				<table class=\"module-button\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																					<tr>\n																						<td class=\"border-radius\" align=\"center\" bgcolor=\"#FFCD08\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">\n																							<a href=\"https://ithemes.com/security/#plugin-pricing\" target=\"_blank\" class=\"border-radius\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #2E280E;font-family: Helvetica;font-size: 30px;line-height: 100%;text-align: center;text-decoration: none;background-color: #FFCD08;border: 1px solid #FFCD08;display: inline-block;font-weight: bold;padding-top: 20px;padding-right: 30px;padding-bottom: 20px;padding-left: 30px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">Get iThemes Security Pro</a>\n																						</td>\n																					</tr>\n																				</table>\n																			</td>\n																		</tr>\n																	</table>\n																	<p class=\"why-pro\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #999999;font-style: italic;\">Why go Pro? <a href=\"https://ithemes.com/security/why-go-pro/\">Check out the Free/Pro comparison chart.</a></p>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Security Resources</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/article_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/category/wordpress-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Articles</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read the latest in WordPress Security news, tips, and updates on <a href=\"https://ithemes.com/category/wordpress-security/\">iThemes Blog</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/video_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/tutorial/category/ithemes-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Tutorials</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Make the most of iThemes Security features with our <a href=\"https://ithemes.com/tutorial/category/ithemes-security/\">free iThemes Security tutorials</a>.</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"divider\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"divider-border\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border-top-width: 1px;border-top-style: solid;border-top-color: #E8E8E8;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 1px;text-align: center;padding-bottom: 20px;width: 450px;\">\n											&nbsp;\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Help &amp; Support</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/documentation_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"http://ithemes.com/codex/page/IThemes_Security\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Documentation</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read iThemes Security documentation and Frequently Asked Questions on <a href=\"http://ithemes.com/codex/page/IThemes_Security\">the Codex</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/support_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://members.ithemes.com/panel/helpdesk.php\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Support</a>\n												<span class=\"pro-flag\" style=\"background-color: #FFCC00;color: #000000;font-size: 10px;display: inline-block;padding: 3px;line-height: 1;position: relative;bottom: 10px;text-transform: uppercase;\">Pro</span>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Pro customers can contact <a href=\"https://members.ithemes.com/panel/helpdesk.php\">iThemes Helpdesk</a> for help. Our support team answers questions Monday – Friday, 8am – 5pm (CST).</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"security-guide\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table id=\"security-guide-container\" class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border: 1px solid #CDCECE;background-color: #D3E8E9;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"104\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"section-padding-bottom\" align=\"left\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/wp_security_book.png\" style=\"max-width: 84px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"84\" alt=\"\" align=\"center\">\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"454\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6C6C6C;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: left;padding-bottom: 20px;\">\n											<h4 style=\"color: #6C6C6C;font-family: Helvetica;font-size: 18px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: left;padding-bottom: 10px;\">Free WordPress Security Guide</h4>\n											Learn simple WordPress security tips — including 3 kinds of security your site needs and 4 best security practices for keeping your WordPress site safe with our <a href=\"https://ithemes.com/publishing/wordpress-security/\">free guide</a>.\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"footer-source-details\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 200%;text-align: center;padding-bottom: 0;padding-top: 60px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/footer_logo.png\" style=\"max-width: 50px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"50\" alt=\"\" align=\"center\"><br>\n											<br>\n											<span style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #666f72;font-family: Helvetica;font-size: 11px;line-height: 200%;text-align: center;text-decoration: none;font-weight: bold;\">\n												This email was generated by the iThemes Security plugin.<br>To unsubscribe from these updates, visit the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec\" style=\"color: #0084CB\">Settings page</a> in the iThemes Security plugin menu.\n											</span>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>					</table>\n				</td>\n			</tr>\n		</table>\n	</center>\n</body>\n\n</html>\n\";s:7:\"headers\";a:0:{}s:11:\"attachments\";a:0:{}s:24:\"phpmailer_exception_code\";i:0;}}s:18:\"\0*\0additional_data\";a:0:{}}}','error','2022-11-07 13:15:38','2022-11-07 13:15:35',12777568,20667216,'https://flaphotography.com/xmlrpc.php',1,0,'159.223.44.164'),(443,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2022-11-07 13:26:26','2022-11-07 13:26:25',11924424,20681744,'https://flaphotography.com/robots.txt',1,0,'114.119.139.59'),(444,0,'notification_center','send::digest','a:2:{s:10:\"recipients\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:42:\"[flaphotography.com] Daily Security Digest\";}','debug','2022-11-07 13:26:26','2022-11-07 13:26:25',12062704,20681744,'https://flaphotography.com/robots.txt',1,0,'114.119.139.59'),(445,0,'notification_center','send_failed::digest','a:1:{s:5:\"error\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:14:\"wp_mail_failed\";a:1:{i:0;s:35:\"SMTP Error: Could not authenticate.\";}}s:10:\"error_data\";a:1:{s:14:\"wp_mail_failed\";a:6:{s:2:\"to\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";s:42:\"[flaphotography.com] Daily Security Digest\";s:7:\"message\";s:50826:\"\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-US\">\n\n<head>\n	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n	<title>Daily Security Digest</title>\n	<meta name=\"viewport\" content=\"width=device-width\">\n\n	<style type=\"text/css\">\n		/* From: https://litmus.com/community/learning/13-foundations-email-coding-101 */\n\n		/* GENERAL STYLE RESETS */\n		body,#body-table,#body-cell{height:100%!important;width:100%!important;margin:0;padding:0;}\n		img,aimg{border:0;outline:none;text-decoration:none;}\n		.imageFix{display:block;}\n		table,td{border-collapse:collapse;border-spacing:0;}\n\n		/* CLIENT-SPECIFIC RESETS */\n		.ReadMsgBody{width:100%;}\n		.ExternalClass{width:100%;}\n		.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{line-height:100%;}\n		table,td{mso-table-lspace:0pt;mso-table-rspace:0pt;}\n		img{-ms-interpolation-mode:bicubic;}\n		body,table,td,p,a,li,blockquote{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}\n\n\n		h1,h2,h3,h4,h5,h6{color:#202020;font-family:Helvetica;font-size:20px;font-weight:bold;line-height:150%;margin:0;padding:0;text-align:center;}\n		p{font-family:Helvetica;font-size:16px;line-height:150%;margin-top:10px;margin-right:0;margin-bottom:10px;margin-left:0;padding:0;text-align:center;}\n		a{color:#0084CB;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;text-decoration:none;}\n		img{height:auto;}\n\n		body,#body-table{background-color:#FFFFFF;}\n		#body-cell{padding-bottom:20px;}\n		.section-padding{padding-top:20px;padding-right:20px;padding-left:20px;}\n		.section-padding-bottom{padding-bottom:20px;}\n		.container-cell{color:#808080;font-family:Helvetica;font-size:16px;line-height:150%;text-align:center;padding-bottom:20px;}\n		#top-banner{background-color:#FFCE08;}\n		#top-banner .container-cell{color:#413F39;font-size:13px;}\n		#top-logo .container-cell{padding-top:20px;}\n		#title-container h1{font-size:34px;}\n		.info-box{padding-top:20px;padding-bottom:20px;}\n		.info-box .container{border:1px solid #CDCECE;background-color:#F2F2F2;}\n		.info-box .section-padding{padding-top:40px;padding-right:40px;padding-left:40px;}\n		.info-box .container-cell{padding-bottom:40px;}\n		.info-box .info-icon{width:33px;height:23px;vertical-align:middle;}\n		.section-heading .container-cell{padding-bottom:0;}\n		.section-heading h4{color:#0084CB;font-size:16px;}\n		.section-heading h4 img{padding-top:2px;padding-right:5px;vertical-align:top;}\n		.lockouts-summary .container.left-column{margin-right:60px;}\n		.lockouts-summary h4{color:#ACAAAA;font-size:16px;font-weight:normal;}\n		.lockouts-summary p{color:#505050;font-size:30px;font-weight:bold;}\n		.table{border:1px solid #cdcece;color: #808080;font-family:Helvetica;font-size:14px;}\n		.table th,.table td{border:1px solid #cdcece;padding:10px;}\n		.table th{text-align:left;font-weight:bold;padding:5px 10px;}\n		.table .row-label{font-style:italic;}\n		.table a,.table b{font-size:14px;}\n		.large-text h4{color:#505050;margin-bottom:10px;}\n		.details-box-container{padding-top:20px;padding-bottom:20px;}\n		.details-box{background-color:#E4EEF7;border:1px solid #CDCECE;}\n		.details-box .container-cell{color:#6A6A6A;}\n		.divider .divider-border{border-top-width:1px;border-top-style:solid;border-top-color:#E8E8E8;}\n		.divider .container-cell{line-height:1px;padding-bottom:20px;width:450px;}\n		.module-button .border-radius{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}\n		.module-button a{background-color:#FFCD08;border:1px solid #FFCD08;color:#2E280E;display:inline-block;font-size:18px;font-weight:bold;line-height:100%;padding-top:20px;padding-right:30px;padding-bottom:20px;padding-left:30px;}\n		.pro-callout{padding-top:20px;}\n		.pro-callout-background{background-color:#0B1A23;}\n		.pro-callout .section-padding{padding-top:40px;}\n		.pro-callout .two-factor{color:#FFFFFF;margin-top:20px;margin-bottom:20px;}\n		.pro-callout .module-button a{font-size:30px;}\n		.pro-callout .why-pro{color:#999999;font-style:italic;margin-top:20px;margin-bottom:20px;}\n		.footer-heading h2{color:#002030;font-size:26px;}\n		.pro-flag{background-color:#FFCC00;color:#000000;font-size:10px;display:inline-block;padding:3px;line-height:1;position:relative;bottom:10px;text-transform:uppercase;}\n		#security-guide-container{border:1px solid #CDCECE;background-color:#D3E8E9;}\n		#security-guide .container-cell{color:#6C6C6C;text-align:left;}\n		#security-guide h4{color:#6C6C6C;font-size:18px;padding-bottom:10px;text-align:left;}\n		#security-guide a{font-weight:bold;}\n		#footer-source-details .container-cell{line-height:200%;padding-top:60px;padding-bottom:0;}\n		#footer-source-details a{font-size:11px;font-weight:bold;line-height:200%;}\n		.template-container {max-width: 600px !important;}\n\n		@media only screen and (max-width:600px){\n			body{width:100% !important;min-width:100% !important;}\n			#body-cell{padding:10px !important;}\n			#main-container, .container{width:100% !important;}\n			.preserve-ratio{height:auto !important;width:100% !important;}\n			.container-cell-bottom{padding-top:20px !important;}\n			.lockouts-summary .container{width:auto !important;}\n		}\n\n		@media only screen and (max-width:450px){\n			.divider .container-cell{width:auto !important;}\n		}\n	</style>\n</head>\n\n<body style=\"margin: 0;padding: 0;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n	<center>\n		<table id=\"body-table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;background-color: #FFFFFF;height: 100%!important;width: 100%!important;\">\n			<tr>\n				<td id=\"body-cell\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin: 0;padding: 0;padding-bottom: 20px;height: 100%!important;width: 100%!important;\">\n					<table id=\"main-container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td id=\"top-banner\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFCE08;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #413F39;font-family: Helvetica;font-size: 13px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	Your Daily Security Digest for <b>November 7, 2022</b>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"top-logo\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;padding-top: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/logo.png\" style=\"max-width: 300px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" alt=\"\" align=\"center\">\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td id=\"title-container\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<h1 style=\"color: #202020;font-family: Helvetica;font-size: 34px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Daily Security Digest</h1>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td class=\"info-box\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-bottom: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border: 1px solid #CDCECE;background-color: #F2F2F2;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 40px;padding-right: 40px;padding-left: 40px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 40px;\">\n																	<img class=\"info-icon\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/info_icon.png\" alt=\"\" align=\"center\" width=\"33\" height=\"23\" style=\"border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: 23px;width: 33px;vertical-align: middle;\">\n																	The following is a summary of security related activity on your site: <b>flaphotography.com</b>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td class=\"section-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 0;\">\n																	<h4 style=\"color: #0084CB;font-family: Helvetica;font-size: 16px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n																		<img src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/icon_lock.png\" alt=\"\" align=\"center\" style=\"border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;padding-top: 2px;padding-right: 5px;vertical-align: top;\">\n																		Lockouts\n																	</h4>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td class=\"lockouts-summary\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td class=\"section-padding\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table class=\"container left-column\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;margin-right: 60px;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<h4 style=\"color: #ACAAAA;font-family: Helvetica;font-size: 16px;font-weight: normal;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Users</h4>\n																	<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 30px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;color: #505050;font-weight: bold;\">2</p>\n																</td>\n															</tr>\n														</table>\n														<table class=\"container right-column\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<h4 style=\"color: #ACAAAA;font-family: Helvetica;font-size: 16px;font-weight: normal;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Hosts</h4>\n																	<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 30px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;color: #505050;font-weight: bold;\">2</p>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td class=\"details-box-container\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-bottom: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table class=\"details-box container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #E4EEF7;border: 1px solid #CDCECE;\">\n												<tr>\n													<td class=\"section-padding\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6A6A6A;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	For more details, <a href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec-logs\"><b>visit your security logs</b></a>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n						<tr>\n							<td class=\"pro-callout\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;\">\n								<table class=\"pro-callout-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #0B1A23;\">\n									<tr>\n										<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n											<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"container\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n												<tr>\n													<td align=\"center\" valign=\"top\" width=\"600\" class=\"section-padding\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 40px;padding-right: 20px;padding-left: 20px;\">\n														<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n															<tr>\n																<td valign=\"top\" class=\"container-cell\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n																	<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/pro_logo_no_text.png\" style=\"max-width: 100px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"100\" alt=\"\" align=\"center\">\n																	<p class=\"two-factor\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #FFFFFF;\">Want two-factor authentication, scheduled site scanning, ticketed support and more?</p>\n																	<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																		<tr>\n																			<td style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																				<table class=\"module-button\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n																					<tr>\n																						<td class=\"border-radius\" align=\"center\" bgcolor=\"#FFCD08\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">\n																							<a href=\"https://ithemes.com/security/#plugin-pricing\" target=\"_blank\" class=\"border-radius\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #2E280E;font-family: Helvetica;font-size: 30px;line-height: 100%;text-align: center;text-decoration: none;background-color: #FFCD08;border: 1px solid #FFCD08;display: inline-block;font-weight: bold;padding-top: 20px;padding-right: 30px;padding-bottom: 20px;padding-left: 30px;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;\">Get iThemes Security Pro</a>\n																						</td>\n																					</tr>\n																				</table>\n																			</td>\n																		</tr>\n																	</table>\n																	<p class=\"why-pro\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 20px;margin-right: 0;margin-bottom: 20px;margin-left: 0;padding: 0;text-align: center;color: #999999;font-style: italic;\">Why go Pro? <a href=\"https://ithemes.com/security/why-go-pro/\">Check out the Free/Pro comparison chart.</a></p>\n																</td>\n															</tr>\n														</table>\n													</td>\n												</tr>\n											</table>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Security Resources</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/article_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/category/wordpress-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Articles</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read the latest in WordPress Security news, tips, and updates on <a href=\"https://ithemes.com/category/wordpress-security/\">iThemes Blog</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/video_icon.png\" style=\"max-width: 61px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"61\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://ithemes.com/tutorial/category/ithemes-security/\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Tutorials</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Make the most of iThemes Security features with our <a href=\"https://ithemes.com/tutorial/category/ithemes-security/\">free iThemes Security tutorials</a>.</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"divider\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"450\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"divider-border\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border-top-width: 1px;border-top-style: solid;border-top-color: #E8E8E8;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 1px;text-align: center;padding-bottom: 20px;width: 450px;\">\n											&nbsp;\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td class=\"footer-heading\" align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<h2 style=\"color: #002030;font-family: Helvetica;font-size: 26px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">Help &amp; Support</h2>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/documentation_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"http://ithemes.com/codex/page/IThemes_Security\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Documentation</a>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Read iThemes Security documentation and Frequently Asked Questions on <a href=\"http://ithemes.com/codex/page/IThemes_Security\">the Codex</a>.</p>\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"260\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell container-cell-bottom\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/support_icon.png\" style=\"max-width: 62px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"62\" alt=\"\" align=\"center\">\n											<br>\n											<h4 style=\"color: #202020;font-family: Helvetica;font-size: 20px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: center;\">\n												<a href=\"https://members.ithemes.com/panel/helpdesk.php\" target=\"_blank\" style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #0084CB;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: center;text-decoration: none;\">Support</a>\n												<span class=\"pro-flag\" style=\"background-color: #FFCC00;color: #000000;font-size: 10px;display: inline-block;padding: 3px;line-height: 1;position: relative;bottom: 10px;text-transform: uppercase;\">Pro</span>\n											</h4>\n											<br>\n											<p style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;font-family: Helvetica;font-size: 16px;line-height: 150%;margin-top: 10px;margin-right: 0;margin-bottom: 10px;margin-left: 0;padding: 0;text-align: center;\">Pro customers can contact <a href=\"https://members.ithemes.com/panel/helpdesk.php\">iThemes Helpdesk</a> for help. Our support team answers questions Monday – Friday, 8am – 5pm (CST).</p>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"security-guide\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table id=\"security-guide-container\" class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border: 1px solid #CDCECE;background-color: #D3E8E9;\">\n						<tr>\n							<td class=\"section-padding\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table class=\"container\" align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"104\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"section-padding-bottom\" align=\"left\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-bottom: 20px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/wp_security_book.png\" style=\"max-width: 84px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"84\" alt=\"\" align=\"center\">\n										</td>\n									</tr>\n								</table>\n								<table class=\"container\" align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"454\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #6C6C6C;font-family: Helvetica;font-size: 16px;line-height: 150%;text-align: left;padding-bottom: 20px;\">\n											<h4 style=\"color: #6C6C6C;font-family: Helvetica;font-size: 18px;font-weight: bold;line-height: 150%;margin: 0;padding: 0;text-align: left;padding-bottom: 10px;\">Free WordPress Security Guide</h4>\n											Learn simple WordPress security tips — including 3 kinds of security your site needs and 4 best security practices for keeping your WordPress site safe with our <a href=\"https://ithemes.com/publishing/wordpress-security/\">free guide</a>.\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>\n<tr>\n	<td id=\"footer-source-details\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n		<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n			<tr>\n				<td align=\"center\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n					<table class=\"container\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n						<tr>\n							<td class=\"section-padding\" align=\"center\" valign=\"top\" width=\"600\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;padding-top: 20px;padding-right: 20px;padding-left: 20px;\">\n								<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;\">\n									<tr>\n										<td class=\"container-cell\" valign=\"top\" style=\"border-collapse: collapse;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #808080;font-family: Helvetica;font-size: 16px;line-height: 200%;text-align: center;padding-bottom: 0;padding-top: 60px;\">\n											<img class=\"preserve-ratio\" src=\"https://flaphotography.com/wp-content/plugins/better-wp-security/core/img/mail/footer_logo.png\" style=\"max-width: 50px;border: 0;outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;height: auto;\" width=\"50\" alt=\"\" align=\"center\"><br>\n											<br>\n											<span style=\"-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;color: #666f72;font-family: Helvetica;font-size: 11px;line-height: 200%;text-align: center;text-decoration: none;font-weight: bold;\">\n												This email was generated by the iThemes Security plugin.<br>To unsubscribe from these updates, visit the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=itsec\" style=\"color: #0084CB\">Settings page</a> in the iThemes Security plugin menu.\n											</span>\n										</td>\n									</tr>\n								</table>\n							</td>\n						</tr>\n					</table>\n				</td>\n			</tr>\n		</table>\n	</td>\n</tr>					</table>\n				</td>\n			</tr>\n		</table>\n	</center>\n</body>\n\n</html>\n\";s:7:\"headers\";a:0:{}s:11:\"attachments\";a:0:{}s:24:\"phpmailer_exception_code\";i:0;}}s:18:\"\0*\0additional_data\";a:0:{}}}','error','2022-11-07 13:26:28','2022-11-07 13:26:25',12357664,20681744,'https://flaphotography.com/robots.txt',1,0,'114.119.139.59');
/*!40000 ALTER TABLE `wp1j_itsec_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_itsec_mutexes`
--

DROP TABLE IF EXISTS `wp1j_itsec_mutexes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_mutexes` (
  `mutex_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `mutex_name` varchar(100) NOT NULL,
  `mutex_expires` int(11) unsigned NOT NULL,
  PRIMARY KEY (`mutex_id`),
  UNIQUE KEY `mutex_name` (`mutex_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_mutexes`
--

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

--
-- Table structure for table `wp1j_itsec_opaque_tokens`
--

DROP TABLE IF EXISTS `wp1j_itsec_opaque_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_opaque_tokens` (
  `token_id` char(64) NOT NULL,
  `token_hashed` char(64) NOT NULL,
  `token_type` varchar(32) NOT NULL,
  `token_data` text NOT NULL,
  `token_created_at` datetime NOT NULL,
  PRIMARY KEY (`token_id`),
  UNIQUE KEY `token_hashed` (`token_hashed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_opaque_tokens`
--

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

--
-- Table structure for table `wp1j_itsec_temp`
--

DROP TABLE IF EXISTS `wp1j_itsec_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_temp` (
  `temp_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `temp_type` varchar(25) NOT NULL,
  `temp_date` datetime NOT NULL,
  `temp_date_gmt` datetime NOT NULL,
  `temp_host` varchar(40) DEFAULT NULL,
  `temp_user` bigint(20) unsigned DEFAULT NULL,
  `temp_username` varchar(60) DEFAULT NULL,
  PRIMARY KEY (`temp_id`),
  KEY `temp_date_gmt` (`temp_date_gmt`),
  KEY `temp_host` (`temp_host`),
  KEY `temp_user` (`temp_user`),
  KEY `temp_username` (`temp_username`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_temp`
--

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

--
-- Table structure for table `wp1j_itsec_user_groups`
--

DROP TABLE IF EXISTS `wp1j_itsec_user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_itsec_user_groups` (
  `group_id` char(36) NOT NULL,
  `group_label` varchar(255) NOT NULL DEFAULT '',
  `group_roles` text DEFAULT NULL,
  `group_canonical` text DEFAULT NULL,
  `group_users` text DEFAULT NULL,
  `group_min_role` varchar(255) DEFAULT NULL,
  `group_created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_itsec_user_groups`
--

LOCK TABLES `wp1j_itsec_user_groups` WRITE;
/*!40000 ALTER TABLE `wp1j_itsec_user_groups` DISABLE KEYS */;
INSERT INTO `wp1j_itsec_user_groups` VALUES ('12fe17a3-25a3-458e-bd40-96540b2935d0','Administrators','','administrator','','','2021-09-25 15:28:32'),('1d55710b-e91f-4fd0-a822-8396dfa98fa1','Editors','','editor','','','2021-09-25 15:28:32'),('d78ef16f-1f7c-4094-b8ac-d09c2e867231','Authors','','author','','','2021-09-25 15:28:32'),('36a6aa31-8a3a-4991-86d3-db0470ca876b','Contributors','','contributor','','','2021-09-25 15:28:32'),('3a4e04b0-afcd-4518-a887-05ce462e7e2d','Subscribers','','subscriber','','','2021-09-25 15:28:32');
/*!40000 ALTER TABLE `wp1j_itsec_user_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_links`
--

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

--
-- Dumping data for table `wp1j_links`
--

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

--
-- Table structure for table `wp1j_options`
--

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

--
-- Dumping data for table `wp1j_options`
--

LOCK TABLES `wp1j_options` WRITE;
/*!40000 ALTER TABLE `wp1j_options` DISABLE KEYS */;
INSERT INTO `wp1j_options` VALUES (1,'siteurl','https://flaphotography.com','yes'),(2,'home','https://flaphotography.com','yes'),(3,'blogname','FLAP PHOTOGRAPHY','yes'),(4,'blogdescription','FLAP PHOTOGRAPHY','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','flalogsta@flapstart.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'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:12:{i:0;s:41:\"better-wp-security/better-wp-security.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:49:\"date-time-picker-field/date-time-picker-field.php\";i:3;s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";i:4;s:31:\"divi-overlays/divi-overlays.php\";i:5;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:6;s:27:\"updraftplus/updraftplus.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";i:8;s:39:\"wp-file-manager/file_folder_manager.php\";i:9;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:10;s:23:\"wp-smushit/wp-smush.php\";i:11;s:33:\"wps-hide-login/wps-hide-login.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','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','49752','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:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(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:3:{s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";s:16:\"uninstall_action\";s:41:\"better-wp-security/better-wp-security.php\";a:2:{i:0;s:10:\"ITSEC_Core\";i:1;s:16:\"handle_uninstall\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:35:\"monsterinsights_lite_uninstall_hook\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','85','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','258','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','1679315653','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,'initial_db_version','49752','yes'),(99,'wp1j_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:18:{i:1670647036;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1670647815;a:1:{s:10:\"itsec_cron\";a:1:{s:32:\"12ca8767a64eac20d01836398698c811\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{i:0;s:11:\"flush-files\";}s:8:\"interval\";i:3600;}}}i:1670648854;a:1:{s:15:\"itsec_cron_test\";a:1:{s:32:\"4ee89b8f227df63b074c69e3a8c72eff\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1670648854;}}}}i:1670648938;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1670677738;a:3:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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;}}}i:1670678644;a:1:{s:10:\"itsec_cron\";a:6:{s:32:\"3ec3d6914daf50bcdb5e5b065213e29b\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:17:\"purge-log-entries\";}s:8:\"interval\";i:86400;}s:32:\"abcdd2161b38ff88bddcea9ec08412b6\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:28:\"dashboard-consolidate-events\";}s:8:\"interval\";i:86400;}s:32:\"91ed9e6ce3fd2e95cc140964d5c85e55\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:19:\"identify-server-ips\";}s:8:\"interval\";i:86400;}s:32:\"7a0fd5d064c59cf40c3df9ad0bb6e63d\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:11:\"clear-locks\";}s:8:\"interval\";i:86400;}s:32:\"aa768a35ceed34e467f270ebdc5d82f4\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:14:\"purge-lockouts\";}s:8:\"interval\";i:86400;}s:32:\"c0ae31dfe60fdb9da055aa838519db0f\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:12:\"clear-tokens\";}s:8:\"interval\";i:86400;}}}i:1670682611;a:1:{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;}}}i:1670682981;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1670716800;a:1:{s:22:\"wdev_logger_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1670720944;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: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:1670724675;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1670730171;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1670848219;a:1:{s:35:\"monsterinsights_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1671147689;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1671156675;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1671239338;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:1672708548;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(61375,'itsec_cron','a:2:{s:6:\"single\";a:0:{}s:9:\"recurring\";a:7:{s:17:\"purge-log-entries\";a:1:{s:4:\"data\";a:0:{}}s:28:\"dashboard-consolidate-events\";a:1:{s:4:\"data\";a:0:{}}s:19:\"identify-server-ips\";a:1:{s:4:\"data\";a:0:{}}s:11:\"clear-locks\";a:1:{s:4:\"data\";a:0:{}}s:14:\"purge-lockouts\";a:1:{s:4:\"data\";a:0:{}}s:12:\"clear-tokens\";a:1:{s:4:\"data\";a:0:{}}s:11:\"flush-files\";a:1:{s:4:\"data\";a:0:{}}}}','no'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1631236557;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(14489,'et_pb_contact_form_d4d89179fdcc5a1c2a7dd1b98f6b2eff','off','yes'),(14500,'et_pb_contact_form_619e2963ccdb8e2f15aeb56896a6e4b6','off','yes'),(14539,'et_pb_contact_form_7a1111459ed987c9360f17498f97ef8d','off','yes'),(14543,'et_pb_contact_form_582ab1467b1d5fb79f814a00d115d1af','off','yes'),(8222,'et_pb_contact_form_115553910b78ea5b33f8b4ed5d5bae7c','off','yes'),(8227,'et_pb_contact_form_17342c0ac58c5372cca75ba0ab66ba5a','off','yes'),(49764,'et_pb_contact_form_f6c06c4f6ab9567425b7987784f59550','off','yes'),(49765,'et_pb_contact_form_2f9e129553429b2d3dc7d9e665c48f8d','off','yes'),(1025,'et_automatic_updates_options','a:2:{s:8:\"username\";s:6:\"KASSIJ\";s:7:\"api_key\";s:40:\"d4330d465a0eb138ae675b67c8f080dc87500a73\";}','no'),(1442,'wp_force_deactivated_plugins','a:0:{}','yes'),(154,'auto_update_plugins','a:14:{i:0;s:33:\"classic-editor/classic-editor.php\";i:1;s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";i:2;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:3;s:23:\"wp-smushit/wp-smush.php\";i:4;s:27:\"updraftplus/updraftplus.php\";i:5;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:6;s:33:\"wps-hide-login/wps-hide-login.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";i:8;s:40:\"wordpress-seo-premium/wp-seo-premium.php\";i:9;s:25:\"wpseo-video/video-seo.php\";i:10;s:25:\"wpseo-local/local-seo.php\";i:11;s:39:\"wpseo-woocommerce/wpseo-woocommerce.php\";i:12;s:25:\"wpseo-news/wpseo-news.php\";i:13;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";}','no'),(155,'updraftplus_tour_cancelled_on','intro','yes'),(156,'updraftplus_version','1.22.23','yes'),(157,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-b907880c579a32bb3311d5fb2e7e94ab\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(158,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";a:7:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:832:\"u0LPuFgHqWoR7h5w8Ffetia71GcLExLy9zOrvfJRqYar3NfCLyxFCyXyLkYCxD75uoOqmIO7MRzRN4fO5rCKPiyxBN1IsHAGAflh/dOoF3dVAkHpucVyPNzSR3Ch5EqN8pMbFZtVgEwo+6BlxGRDIMkeCWoWGJ8IJNNBE+NawSpaKtwv5h8/J5FvzGPoFQgtI0868yc3ilTZQk/KxUwvBC3dcYaLuYvXWy9+aAv59ZITwxKi/tZkErKWkgtXgIAXNCpqjUvSJbNd766KklFEQ51ehrXp7V7hhFxft8c+TvEqX+WFqLGcwEOZYkT7dtSgEAd/v7F0XplGQEjvgAlEPHZaF53GFWl8uQWioCS5OOidT00Xa4cFJJeFKyxdz81GGxfwdvoL5gzO7mB5xMfRRplwPiFCLKgnBKppUiFM0JXU4f0BCI1WuA81HvSYRoHI4jypGw3BYsfdpvEruydHkooLqmVJzzstXls8wswhLTbLfwNkOJOxWBXdANbp/Q4182JURx0kfkdBaxvaQXW6jbG1HpGQeR11AmO3Irn2jsAtzNMVR5t9Sjy8R7a9mpZvkCG9IEfT/LCfvpEw5cUH+m+DS9BEpKvX/xWIcCuuknEYpOK0MMwBLDRArg9zwl4qCfpEBxka5CxsAjcCM+fKLwSXws8gkMrnfvspsw71iAptClmdczk/djpKuvHrFYpDxmw+pBS2e0WHaAJvNJBGiku/tge48pUxC6df24m2NvOAt8d1tuYSNr+lVyymMTqG+1My65QzVKH/F39T/7p29flyXaw+bHlDvQqyUKiC7VwTpZB34dNf591Ojd+KcMRM\";s:9:\"ownername\";s:7:\"Kassi J\";s:4:\"CSRF\";s:0:\"\";s:16:\"instance_enabled\";i:1;}}}','yes'),(159,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-7dd1d2b8ae74f29badf90656f082679d\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(160,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-c705622a252aabeaba3b2c0df60b0376\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(161,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-7b31eee7a7159b30e2fd5a11ba44c465\";a:4:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}}}','yes'),(162,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(341,'updraft_include_uploads','1','yes'),(163,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-bbd5737da66e9880d7e8f47c08f64607\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(164,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(340,'updraft_include_themes','1','yes'),(165,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(339,'updraft_include_plugins','1','yes'),(166,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(167,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(186,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(214,'et_account_status','active','no'),(180,'et_core_version','4.19.2','yes'),(369,'wpseo_sitemap_1_cache_validator','5uBOL','no'),(370,'wpseo_sitemap_page_cache_validator','5uBON','no'),(182,'et_divi','a:318:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.19.2\";s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:19:\"post_meta_font_size\";s:2:\"14\";s:16:\"post_meta_height\";s:1:\"1\";s:17:\"post_meta_spacing\";s:1:\"0\";s:15:\"post_meta_style\";s:0:\"\";s:21:\"post_header_font_size\";s:2:\"30\";s:18:\"post_header_height\";s:1:\"1\";s:19:\"post_header_spacing\";s:1:\"0\";s:17:\"post_header_style\";s:0:\"\";s:12:\"boxed_layout\";s:0:\"\";s:13:\"content_width\";s:4:\"1080\";s:12:\"gutter_width\";s:1:\"3\";s:17:\"use_sidebar_width\";s:0:\"\";s:13:\"sidebar_width\";s:2:\"21\";s:15:\"section_padding\";s:1:\"4\";s:20:\"phone_section_height\";s:2:\"50\";s:21:\"tablet_section_height\";s:2:\"50\";s:11:\"row_padding\";s:1:\"2\";s:16:\"phone_row_height\";s:2:\"30\";s:17:\"tablet_row_height\";s:2:\"30\";s:16:\"cover_background\";s:2:\"on\";s:14:\"body_font_size\";s:2:\"14\";s:16:\"body_font_height\";s:3:\"1.7\";s:20:\"phone_body_font_size\";s:2:\"14\";s:21:\"tablet_body_font_size\";s:2:\"14\";s:16:\"body_header_size\";s:2:\"30\";s:19:\"body_header_spacing\";s:1:\"0\";s:18:\"body_header_height\";s:1:\"1\";s:17:\"body_header_style\";s:0:\"\";s:22:\"phone_header_font_size\";s:2:\"30\";s:23:\"tablet_header_font_size\";s:2:\"30\";s:12:\"heading_font\";s:4:\"none\";s:9:\"body_font\";s:4:\"none\";s:10:\"link_color\";s:7:\"#2ea3f2\";s:10:\"font_color\";s:7:\"#666666\";s:12:\"header_color\";s:7:\"#666666\";s:12:\"accent_color\";s:7:\"#2ea3f2\";s:13:\"color_schemes\";s:4:\"none\";s:12:\"header_style\";s:4:\"left\";s:12:\"vertical_nav\";s:0:\"\";s:24:\"vertical_nav_orientation\";s:4:\"left\";s:8:\"hide_nav\";s:0:\"\";s:24:\"show_header_social_icons\";s:0:\"\";s:16:\"show_search_icon\";b:0;s:22:\"slide_nav_show_top_bar\";s:2:\"on\";s:15:\"slide_nav_width\";s:3:\"320\";s:19:\"slide_nav_font_size\";s:2:\"14\";s:23:\"slide_nav_top_font_size\";s:2:\"14\";s:24:\"fullscreen_nav_font_size\";s:2:\"30\";s:28:\"fullscreen_nav_top_font_size\";s:2:\"18\";s:22:\"slide_nav_font_spacing\";s:1:\"0\";s:14:\"slide_nav_font\";s:4:\"none\";s:20:\"slide_nav_font_style\";s:0:\"\";s:12:\"slide_nav_bg\";s:7:\"#2ea3f2\";s:21:\"slide_nav_links_color\";s:7:\"#ffffff\";s:28:\"slide_nav_links_color_active\";s:7:\"#ffffff\";s:19:\"slide_nav_top_color\";s:21:\"rgba(255,255,255,0.6)\";s:16:\"slide_nav_search\";s:21:\"rgba(255,255,255,0.6)\";s:19:\"slide_nav_search_bg\";s:15:\"rgba(0,0,0,0.2)\";s:13:\"nav_fullwidth\";s:0:\"\";s:17:\"hide_primary_logo\";s:0:\"\";s:11:\"menu_height\";s:2:\"66\";s:11:\"logo_height\";s:2:\"54\";s:15:\"menu_margin_top\";s:1:\"0\";s:21:\"primary_nav_font_size\";s:2:\"14\";s:24:\"primary_nav_font_spacing\";s:1:\"0\";s:16:\"primary_nav_font\";s:4:\"none\";s:22:\"primary_nav_font_style\";s:0:\"\";s:23:\"secondary_nav_font_size\";s:2:\"12\";s:23:\"secondary_nav_fullwidth\";s:0:\"\";s:26:\"secondary_nav_font_spacing\";s:1:\"0\";s:18:\"secondary_nav_font\";s:4:\"none\";s:24:\"secondary_nav_font_style\";s:0:\"\";s:9:\"menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:16:\"hide_mobile_logo\";s:0:\"\";s:16:\"mobile_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:16:\"menu_link_active\";s:7:\"#2ea3f2\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#ffffff\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#2ea3f2\";s:31:\"primary_nav_dropdown_link_color\";s:15:\"rgba(0,0,0,0.7)\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:21:\"mobile_primary_nav_bg\";s:7:\"#ffffff\";s:16:\"secondary_nav_bg\";s:7:\"#2ea3f2\";s:28:\"secondary_nav_text_color_new\";s:7:\"#ffffff\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#2ea3f2\";s:33:\"secondary_nav_dropdown_link_color\";s:7:\"#ffffff\";s:32:\"secondary_nav_dropdown_animation\";s:4:\"fade\";s:22:\"primary_nav_text_color\";s:4:\"dark\";s:24:\"secondary_nav_text_color\";s:5:\"light\";s:15:\"hide_fixed_logo\";s:0:\"\";s:21:\"minimized_menu_height\";s:2:\"40\";s:27:\"fixed_primary_nav_font_size\";s:2:\"14\";s:20:\"fixed_primary_nav_bg\";s:7:\"#ffffff\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#2ea3f2\";s:15:\"fixed_menu_link\";s:15:\"rgba(0,0,0,0.6)\";s:25:\"fixed_secondary_menu_link\";s:7:\"#ffffff\";s:22:\"fixed_menu_link_active\";s:7:\"#2ea3f2\";s:12:\"phone_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:24:\"show_footer_social_icons\";b:0;s:14:\"footer_columns\";s:1:\"4\";s:9:\"footer_bg\";s:7:\"#222222\";s:23:\"widget_header_font_size\";d:18;s:24:\"widget_header_font_style\";b:0;s:21:\"widget_body_font_size\";s:2:\"14\";s:23:\"widget_body_line_height\";s:3:\"1.7\";s:22:\"widget_body_font_style\";b:0;s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:26:\"footer_widget_header_color\";s:7:\"#2ea3f2\";s:26:\"footer_widget_bullet_color\";s:7:\"#2ea3f2\";s:28:\"footer_menu_background_color\";s:22:\"rgba(255,255,255,0.05)\";s:22:\"footer_menu_text_color\";s:7:\"#bbbbbb\";s:29:\"footer_menu_active_link_color\";s:7:\"#2ea3f2\";s:26:\"footer_menu_letter_spacing\";s:1:\"0\";s:22:\"footer_menu_font_style\";b:0;s:21:\"footer_menu_font_size\";s:2:\"14\";s:27:\"bottom_bar_background_color\";s:16:\"rgba(0,0,0,0.32)\";s:21:\"bottom_bar_text_color\";s:7:\"#666666\";s:21:\"bottom_bar_font_style\";b:0;s:20:\"bottom_bar_font_size\";s:2:\"14\";s:27:\"bottom_bar_social_icon_size\";s:2:\"24\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#666666\";s:29:\"disable_custom_footer_credits\";b:1;s:21:\"custom_footer_credits\";s:0:\"\";s:21:\"all_buttons_font_size\";s:2:\"20\";s:22:\"all_buttons_text_color\";s:0:\"\";s:20:\"all_buttons_bg_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"all_buttons_border_width\";s:1:\"2\";s:24:\"all_buttons_border_color\";s:7:\"#ffffff\";s:25:\"all_buttons_border_radius\";s:1:\"3\";s:19:\"all_buttons_spacing\";s:1:\"0\";s:22:\"all_buttons_font_style\";s:0:\"\";s:16:\"all_buttons_font\";s:4:\"none\";s:16:\"all_buttons_icon\";s:3:\"yes\";s:25:\"all_buttons_selected_icon\";s:1:\"5\";s:22:\"all_buttons_icon_color\";s:7:\"#ffffff\";s:26:\"all_buttons_icon_placement\";s:5:\"right\";s:22:\"all_buttons_icon_hover\";s:3:\"yes\";s:28:\"all_buttons_text_color_hover\";s:0:\"\";s:26:\"all_buttons_bg_color_hover\";s:21:\"rgba(255,255,255,0.2)\";s:30:\"all_buttons_border_color_hover\";s:13:\"rgba(0,0,0,0)\";s:31:\"all_buttons_border_radius_hover\";b:0;s:25:\"all_buttons_spacing_hover\";b:0;s:30:\"library_removed_legacy_layouts\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:22:\"builder_global_presets\";O:8:\"stdClass\":0:{}s:29:\"custom_defaults_migrated_flag\";b:1;s:31:\"divi_previous_installed_version\";s:6:\"4.19.1\";s:29:\"divi_latest_installed_version\";s:6:\"4.19.2\";s:27:\"divi_skip_font_subset_force\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:3:{i:1;s:3:\"off\";i:2;s:3:\"off\";i:3;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:430;s:33:\"et_fb_pref_modal_dimension_height\";i:465;s:27:\"et_fb_pref_modal_position_x\";i:734;s:27:\"et_fb_pref_modal_position_y\";i:43;s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:9:\"divi_logo\";s:0:\"\";s:14:\"divi_fixed_nav\";s:5:\"false\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:24:\"divi_show_instagram_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:34:\"https://www.facebook.com/FlapStart\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:42:\"https://www.instagram.com/kassi_flapstart/\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:3064:\"/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n.cu-form .et_pb_contact_field_dov_1133_13 label{\n display: block !important;\n}\n\n\n\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:499:\"<!-- TO AUTOPLAY PROMO VIDEO -->\r\n<script>\r\n(function($) {\r\n$(document).ready(function() {\r\n$(\".video-autoplay video\").prop(\'loop\', \'loop\');\r\n$(\".video-autoplay video\").prop(\'muted\', true);\r\n$(\".video-autoplay video\").get()[0].play();\r\n});\r\n})(jQuery);\r\n</script>\r\n\r\n<script>\r\n(function($) {\r\n$(document).ready(function() {\r\n$(\".video-autoplayb video\").prop(\'loop\', \'loop\');\r\n$(\".video-autoplayb video\").prop(\'muted\', true);\r\n$(\".video-autoplayb video\").get()[0].play();\r\n});\r\n})(jQuery);\r\n</script>\";s:21:\"divi_integration_body\";s:325:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-210654226-2\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-210654226-2\');\r\n</script>\r\n\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:27:\"et_pb_post_type_integration\";a:5:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";s:9:\"divi_bars\";s:2:\"on\";s:12:\"divi_overlay\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:3:\"off\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:29:\"divi_dynamic_module_framework\";s:2:\"on\";s:16:\"divi_dynamic_css\";s:2:\"on\";s:18:\"divi_dynamic_icons\";s:2:\"on\";s:22:\"divi_inline_stylesheet\";s:2:\"on\";s:17:\"divi_critical_css\";s:2:\"on\";s:30:\"divi_critical_threshold_height\";s:6:\"Medium\";s:25:\"divi_dynamic_js_libraries\";s:2:\"on\";s:19:\"divi_disable_emojis\";s:2:\"on\";s:20:\"divi_defer_block_css\";s:2:\"on\";s:24:\"divi_google_fonts_inline\";s:2:\"on\";s:51:\"divi_limit_google_fonts_support_for_legacy_browsers\";s:2:\"on\";s:23:\"divi_enable_jquery_body\";s:2:\"on\";s:32:\"divi_enable_jquery_compatibility\";s:2:\"on\";s:29:\"divi_enable_jquery_body_super\";s:5:\"false\";s:12:\"divi_favicon\";s:0:\"\";s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";}','yes'),(183,'theme_mods_Divi','a:4:{s:18:\"custom_css_post_id\";i:197;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:6;}}','yes'),(184,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(153,'recently_activated','a:1:{s:23:\"divi-bars/divi-bars.php\";i:1667741042;}','yes'),(152,'finished_updating_comment_type','1','yes'),(135,'can_compress_scripts','1','no'),(23252,'wpseo_sitemap_212_cache_validator','6XPsm','no'),(3969,'et_pb_contact_form_564d0d5ac2bd8d7f6d28b2d53c0baca5','off','yes'),(34129,'et_pb_contact_form_bc2b22a31896c05d4906e3533060fc9e','off','yes'),(34130,'et_pb_contact_form_4ddd50e03e8c308187af1a7edfb2ff4a','off','yes'),(34132,'et_pb_contact_form_980ed54c672f3c471963c6e69ef0db09','off','yes'),(34133,'et_pb_contact_form_cdf1a2d491003017f4114249731bab1a','off','yes'),(34134,'et_pb_contact_form_909df72063f9bcaff5cd50589eb5c53f','off','yes'),(34136,'et_pb_contact_form_9419870e1bc523dfaf0468c0a6b026fb','off','yes'),(34602,'et_pb_contact_form_857939554b2d0da97aed797621181f78','off','yes'),(34599,'et_pb_contact_form_fc1194ca72930e9abd5c0d701d21772a','off','yes'),(34588,'et_pb_contact_form_a16bb590976edc46a7eb590a1d639762','off','yes'),(34589,'et_pb_contact_form_70a71530b3434295d80f349cb1e6209f','off','yes'),(34590,'et_pb_contact_form_b345fa057fbe61ef931f30edd3752bb3','off','yes'),(34591,'et_pb_contact_form_8e26929d8c646ba6d7cc831f0a9c3126','off','yes'),(34592,'et_pb_contact_form_a13cbba07eaffd78a1c9eb93dad98fea','off','yes'),(34595,'et_pb_contact_form_102486b437cee3c459358c88e4b3ee2d','off','yes'),(34594,'et_pb_contact_form_ab982359ab5a0e005c60227e55aa40af','off','yes'),(34603,'et_pb_contact_form_f9fa22d129d3fa23e243e27f219e5af6','off','yes'),(34604,'et_pb_contact_form_d13cd6b5ed0e0e5ed28ae9f29a0205f8','off','yes'),(34607,'et_pb_contact_form_ae2c95d1018a5564d9b734862017faf7','off','yes'),(34606,'et_pb_contact_form_e1e69852d4783b85d77e8cb3c947e9e0','off','yes'),(8262,'et_pb_contact_form_52aa8c018f0847ff62f1be51b97952df','off','yes'),(31549,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1667867446;}','yes'),(10615,'updraft_lock_7d13fd13ec6f','0','no'),(9104,'monsterinsights_notifications_run','a:25:{s:37:\"monsterinsights_notification_visitors\";i:1667866826;s:37:\"monsterinsights_notification_audience\";i:1667867069;s:42:\"monsterinsights_notification_mobile_device\";i:1667867069;s:43:\"monsterinsights_notification_upgrade_to_pro\";i:1667867077;s:40:\"monsterinsights_notification_bounce_rate\";i:1667867450;s:47:\"monsterinsights_notification_returning_visitors\";i:1667867450;s:45:\"monsterinsights_notification_traffic_dropping\";i:1667867484;s:62:\"monsterinsights_notification_upgrade_for_search_console_report\";i:1667867542;s:56:\"monsterinsights_notification_upgrade_for_form_conversion\";i:1662638644;s:56:\"monsterinsights_notification_upgrade_for_email_summaries\";i:1662639820;s:56:\"monsterinsights_notification_upgrade_for_google_optimize\";i:1662843270;s:56:\"monsterinsights_notification_to_add_more_file_extensions\";i:1662843298;s:53:\"monsterinsights_notification_to_setup_affiliate_links\";i:1662843562;s:46:\"monsterinsights_notification_headline_analyzer\";i:1662843923;s:55:\"monsterinsights_notification_mobile_device_high_traffic\";i:1667867069;s:56:\"monsterinsights_notification_upgrade_to_pro_high_traffic\";i:1667867450;s:42:\"monsterinsights_notification_dual_tracking\";i:1667867450;s:64:\"monsterinsights_notification_upgrade_for_popular_posts_templates\";i:1667867484;s:57:\"monsterinsights_notification_upgrade_for_events_reporting\";i:1667867534;s:58:\"monsterinsights_notification_upgrade_for_custom_dimensions\";i:1662640290;s:39:\"monsterinsights_notification_eu_traffic\";i:1662843298;s:49:\"monsterinsights_notification_install_optinmonster\";i:1662843940;s:43:\"monsterinsights_notification_install_aioseo\";i:1662843940;s:44:\"monsterinsights_notification_install_wpforms\";i:1662843940;s:43:\"monsterinsights_notification_multiple_gtags\";i:1662843995;}','no'),(9102,'monsterinsights_review','a:2:{s:4:\"time\";i:1635004095;s:9:\"dismissed\";b:0;}','yes'),(9095,'widget_monsterinsights-popular-posts-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9096,'monsterinsights_usage_tracking_config','a:6:{s:3:\"day\";i:1;s:4:\"hour\";i:12;s:6:\"minute\";i:30;s:6:\"second\";i:19;s:6:\"offset\";i:131419;s:8:\"initsend\";i:1635165019;}','yes'),(2791,'et-support-center-safe-mode-verify','85890e893f5c62da15856bccb033113d','yes'),(2792,'et_pb_role_settings','a:6:{s:13:\"administrator\";a:91:{s:13:\"theme_options\";s:2:\"on\";s:12:\"divi_library\";s:2:\"on\";s:13:\"theme_builder\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:16:\"theme_customizer\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:2:\"on\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}s:6:\"editor\";a:89:{s:12:\"divi_library\";s:2:\"on\";s:13:\"theme_builder\";s:3:\"off\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}s:6:\"author\";a:88:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}s:11:\"contributor\";a:88:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}s:13:\"wpseo_manager\";a:88:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}s:12:\"wpseo_editor\";a:88:{s:12:\"divi_library\";s:2:\"on\";s:10:\"ab_testing\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:11:\"portability\";s:2:\"on\";s:10:\"add_module\";s:2:\"on\";s:11:\"edit_module\";s:2:\"on\";s:11:\"move_module\";s:2:\"on\";s:14:\"disable_module\";s:2:\"on\";s:11:\"lock_module\";s:2:\"on\";s:20:\"divi_builder_control\";s:2:\"on\";s:11:\"load_layout\";s:2:\"on\";s:18:\"use_visual_builder\";s:2:\"on\";s:23:\"custom_fonts_management\";s:2:\"on\";s:34:\"read_dynamic_content_custom_fields\";s:3:\"off\";s:12:\"save_library\";s:2:\"on\";s:11:\"add_library\";s:2:\"on\";s:19:\"edit_global_library\";s:2:\"on\";s:16:\"general_settings\";s:2:\"on\";s:17:\"advanced_settings\";s:2:\"on\";s:19:\"custom_css_settings\";s:2:\"on\";s:11:\"edit_colors\";s:2:\"on\";s:12:\"edit_content\";s:2:\"on\";s:10:\"edit_fonts\";s:2:\"on\";s:12:\"edit_buttons\";s:2:\"on\";s:11:\"edit_layout\";s:2:\"on\";s:12:\"edit_borders\";s:2:\"on\";s:18:\"edit_configuration\";s:2:\"on\";s:15:\"et_pb_accordion\";s:2:\"on\";s:11:\"et_pb_audio\";s:2:\"on\";s:14:\"et_pb_counters\";s:2:\"on\";s:10:\"et_pb_blog\";s:2:\"on\";s:11:\"et_pb_blurb\";s:2:\"on\";s:12:\"et_pb_button\";s:2:\"on\";s:9:\"et_pb_cta\";s:2:\"on\";s:20:\"et_pb_circle_counter\";s:2:\"on\";s:10:\"et_pb_code\";s:2:\"on\";s:14:\"et_pb_comments\";s:2:\"on\";s:18:\"et_pb_contact_form\";s:2:\"on\";s:21:\"et_pb_countdown_timer\";s:2:\"on\";s:13:\"et_pb_divider\";s:2:\"on\";s:12:\"et_pb_signup\";s:2:\"on\";s:26:\"et_pb_filterable_portfolio\";s:2:\"on\";s:20:\"et_pb_fullwidth_code\";s:2:\"on\";s:22:\"et_pb_fullwidth_header\";s:2:\"on\";s:21:\"et_pb_fullwidth_image\";s:2:\"on\";s:19:\"et_pb_fullwidth_map\";s:2:\"on\";s:20:\"et_pb_fullwidth_menu\";s:2:\"on\";s:25:\"et_pb_fullwidth_portfolio\";s:2:\"on\";s:28:\"et_pb_fullwidth_post_content\";s:2:\"on\";s:27:\"et_pb_fullwidth_post_slider\";s:2:\"on\";s:26:\"et_pb_fullwidth_post_title\";s:2:\"on\";s:22:\"et_pb_fullwidth_slider\";s:2:\"on\";s:13:\"et_pb_gallery\";s:2:\"on\";s:11:\"et_pb_image\";s:2:\"on\";s:11:\"et_pb_login\";s:2:\"on\";s:9:\"et_pb_map\";s:2:\"on\";s:10:\"et_pb_menu\";s:2:\"on\";s:20:\"et_pb_number_counter\";s:2:\"on\";s:17:\"et_pb_team_member\";s:2:\"on\";s:15:\"et_pb_portfolio\";s:2:\"on\";s:18:\"et_pb_post_content\";s:2:\"on\";s:14:\"et_pb_post_nav\";s:2:\"on\";s:17:\"et_pb_post_slider\";s:2:\"on\";s:16:\"et_pb_post_title\";s:2:\"on\";s:20:\"et_pb_pricing_tables\";s:2:\"on\";s:12:\"et_pb_search\";s:2:\"on\";s:10:\"et_pb_shop\";s:2:\"on\";s:13:\"et_pb_sidebar\";s:2:\"on\";s:12:\"et_pb_slider\";s:2:\"on\";s:25:\"et_pb_social_media_follow\";s:2:\"on\";s:10:\"et_pb_tabs\";s:2:\"on\";s:17:\"et_pb_testimonial\";s:2:\"on\";s:10:\"et_pb_text\";s:2:\"on\";s:12:\"et_pb_toggle\";s:2:\"on\";s:11:\"et_pb_video\";s:2:\"on\";s:18:\"et_pb_video_slider\";s:2:\"on\";s:17:\"et_support_center\";s:2:\"on\";s:24:\"et_support_center_system\";s:2:\"on\";s:31:\"et_support_center_remote_access\";s:2:\"on\";s:31:\"et_support_center_documentation\";s:2:\"on\";s:27:\"et_support_center_safe_mode\";s:2:\"on\";s:22:\"et_support_center_logs\";s:2:\"on\";s:24:\"et_divi_mods_portability\";s:2:\"on\";s:18:\"epanel_portability\";s:2:\"on\";s:23:\"et_pb_roles_portability\";s:2:\"on\";s:30:\"et_builder_layouts_portability\";s:2:\"on\";s:22:\"et_builder_portability\";s:2:\"on\";s:28:\"et_theme_builder_portability\";s:2:\"on\";}}','yes'),(2442,'et_pb_contact_form_ec3741a7c7be408a21fadfb1c2390f9a','off','yes'),(34209,'dtpicker','a:20:{s:8:\"selector\";s:16:\"date-time-picker\";s:10:\"datepicker\";s:2:\"on\";s:10:\"timepicker\";s:2:\"on\";s:11:\"picker_type\";s:14:\"datetimepicker\";s:6:\"inline\";s:2:\"on\";s:11:\"placeholder\";s:2:\"on\";s:15:\"preventkeyboard\";s:3:\"off\";s:6:\"locale\";s:4:\"auto\";s:5:\"theme\";s:7:\"default\";s:4:\"load\";s:4:\"full\";s:7:\"minDate\";s:2:\"on\";s:8:\"min_date\";s:0:\"\";s:8:\"max_date\";s:0:\"\";s:11:\"days_offset\";s:1:\"0\";s:10:\"dateformat\";s:11:\"MMM-DD-YYYY\";s:4:\"step\";s:2:\"60\";s:7:\"minTime\";s:0:\"\";s:7:\"maxTime\";s:0:\"\";s:6:\"offset\";s:0:\"\";s:10:\"hourformat\";s:7:\"hh:mm A\";}','yes'),(34210,'dtpicker_advanced','a:10:{s:22:\"disabled_calendar_days\";s:0:\"\";s:13:\"disabled_days\";a:1:{i:0;s:1:\"0\";}s:13:\"allowed_times\";s:0:\"\";s:12:\"sunday_times\";s:0:\"\";s:12:\"monday_times\";s:0:\"\";s:13:\"tuesday_times\";s:0:\"\";s:15:\"wednesday_times\";s:0:\"\";s:14:\"thursday_times\";s:0:\"\";s:12:\"friday_times\";s:0:\"\";s:14:\"saturday_times\";s:0:\"\";}','yes'),(9350,'updraft_lock_a17ca2eb5832','0','no'),(9097,'monsterinsights_over_time','a:4:{s:17:\"installed_version\";s:5:\"8.1.0\";s:14:\"installed_date\";i:1635004094;s:13:\"installed_pro\";b:0;s:14:\"installed_lite\";i:1635004094;}','no'),(9098,'monsterinsights_db_version','7.4.0','yes'),(9099,'monsterinsights_current_version','8.1.0','yes'),(9100,'monsterinsights_settings','a:44:{s:22:\"enable_affiliate_links\";b:1;s:15:\"affiliate_links\";a:2:{i:0;a:2:{s:4:\"path\";s:4:\"/go/\";s:5:\"label\";s:9:\"affiliate\";}i:1;a:2:{s:4:\"path\";s:11:\"/recommend/\";s:5:\"label\";s:9:\"affiliate\";}}s:12:\"demographics\";i:1;s:12:\"ignore_users\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:19:\"extensions_of_files\";s:34:\"doc,pdf,ppt,zip,xls,docx,pptx,xlsx\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"link_attribution\";b:1;s:16:\"tag_links_in_rss\";b:1;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:11:\"custom_code\";s:0:\"\";s:13:\"save_settings\";a:1:{i:0;s:13:\"administrator\";}s:12:\"view_reports\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:11:\"events_mode\";s:2:\"js\";s:13:\"tracking_mode\";s:4:\"gtag\";s:30:\"gtagtracker_compatibility_mode\";b:1;s:15:\"email_summaries\";s:2:\"on\";s:23:\"summaries_html_template\";s:3:\"yes\";s:25:\"summaries_email_addresses\";a:1:{i:0;a:1:{s:5:\"email\";s:23:\"flalogsta@flapstart.com\";}}s:17:\"automatic_updates\";s:4:\"none\";s:26:\"popular_posts_inline_theme\";s:5:\"alpha\";s:26:\"popular_posts_widget_theme\";s:5:\"alpha\";s:28:\"popular_posts_products_theme\";s:5:\"alpha\";s:30:\"popular_posts_inline_placement\";s:6:\"manual\";s:34:\"popular_posts_widget_theme_columns\";s:1:\"2\";s:36:\"popular_posts_products_theme_columns\";s:1:\"2\";s:26:\"popular_posts_widget_count\";s:1:\"4\";s:28:\"popular_posts_products_count\";s:1:\"4\";s:38:\"popular_posts_widget_theme_meta_author\";s:2:\"on\";s:36:\"popular_posts_widget_theme_meta_date\";s:2:\"on\";s:40:\"popular_posts_widget_theme_meta_comments\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_price\";s:2:\"on\";s:40:\"popular_posts_products_theme_meta_rating\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_image\";s:2:\"on\";s:32:\"popular_posts_inline_after_count\";s:3:\"150\";s:36:\"popular_posts_inline_multiple_number\";s:1:\"3\";s:38:\"popular_posts_inline_multiple_distance\";s:3:\"250\";s:39:\"popular_posts_inline_multiple_min_words\";s:3:\"100\";s:31:\"popular_posts_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:31:\"popular_posts_widget_post_types\";a:1:{i:0;s:4:\"post\";}s:19:\"verified_appearance\";s:5:\"light\";s:17:\"verified_position\";s:6:\"center\";}','yes'),(9103,'monsterinsights_notifications','a:4:{s:6:\"update\";i:1667866802;s:4:\"feed\";a:0:{}s:6:\"events\";a:82:{i:0;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 3:38 am\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:1;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20221108\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 Visitors Found Your Site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:19:\"11/08/2022 12:20 am\";s:3:\"end\";s:10:\"12/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:2;a:8:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20211127\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:33:\"Traffic from Mobile Devices is 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/27/2021 5:10 am\";s:3:\"end\";s:10:\"12/10/2021\";}i:3;a:10:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20220722\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/22/2022 1:24 pm\";s:3:\"end\";s:10:\"08/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:4;a:8:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20211108\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of your visitors return to your site\";s:7:\"content\";s:498:\"For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. <a href=\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">In this article</a>, we’ll show you 7 proven ways to increase your returning visitor rate.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:153:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=newvsreturning&monsterinsights-highlight=newvsreturning\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:200:\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2021 12:15 pm\";s:3:\"end\";s:10:\"11/21/2021\";}i:5;a:8:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20211128\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/28/2021 7:37 pm\";s:3:\"end\";s:10:\"12/21/2021\";}i:6;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 3:37 am\";s:3:\"end\";s:10:\"07/09/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:7;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220711\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/11/2022 3:36 pm\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:8;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20220906\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/06/2022 11:53 pm\";s:3:\"end\";s:10:\"10/04/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:9;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:28:\"Track Your Website Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"06/26/2022 8:58 pm\";s:3:\"end\";s:10:\"07/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:10;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20220910\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:28:\"Track Your Website Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"09/10/2022 8:54 pm\";s:3:\"end\";s:10:\"09/28/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:11;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220731\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/31/2022 2:10 am\";s:3:\"end\";s:10:\"08/13/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:12;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:28:\"Track Your Website Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:19:\"03/24/2022 12:57 pm\";s:3:\"end\";s:10:\"04/11/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:13;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220906\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"09/06/2022 9:24 pm\";s:3:\"end\";s:10:\"09/19/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:14;a:8:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20211127\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 visitors found your site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"11/27/2021 5:09 am\";s:3:\"end\";s:10:\"12/25/2021\";}i:15;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_google_optimize_20211127\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:56:\"Upgrade to MonsterInsights Pro to Enable Google Optimize\";s:7:\"content\";s:743:\"<a href=\"https://www.monsterinsights.com/addon/google-optimize/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">Google Optimize</a> is a free A/B testing and personalization product by Google that lets you easily conduct experiments to see what works best on your site. With Google Optimize, you can use split testing and personalization to create online experiences that engage and delight your customers. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to unlock the Google Optimize addon.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/27/2021 9:08 pm\";s:3:\"end\";s:10:\"12/25/2021\";}i:16;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20211112\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:55:\"Upgrade to MonsterInsights Pro to Track Form Conversion\";s:7:\"content\";s:719:\"Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">MonsterInsights Pro</a> to track <a href=\"https://www.monsterinsights.com/addon/forms/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">form conversions in Google Analytics.</a>\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/12/2021 6:18 pm\";s:3:\"end\";s:10:\"11/30/2021\";}i:17;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20220324\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 Visitors Found Your Site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"03/24/2022 2:54 am\";s:3:\"end\";s:10:\"04/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:18;a:10:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20220731\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:27:\"See Top Performing Keywords\";s:7:\"content\";s:308:\"<a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to see which keywords are driving traffic to your website so you can focus on what\'s working.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/31/2022 2:14 am\";s:3:\"end\";s:10:\"08/28/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:19;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20221108\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:31 am\";s:3:\"end\";s:10:\"11/26/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:20;a:10:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20221108\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:27:\"See Top Performing Keywords\";s:7:\"content\";s:308:\"<a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to see which keywords are driving traffic to your website so you can focus on what\'s working.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:32 am\";s:3:\"end\";s:10:\"12/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:21;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20220626\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:53 pm\";s:3:\"end\";s:10:\"07/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:22;a:8:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20211127\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of your visitors return to your site\";s:7:\"content\";s:498:\"For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. <a href=\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">In this article</a>, we’ll show you 7 proven ways to increase your returning visitor rate.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:153:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=newvsreturning&monsterinsights-highlight=newvsreturning\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:200:\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/27/2021 5:32 am\";s:3:\"end\";s:10:\"12/10/2021\";}i:23;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:53 pm\";s:3:\"end\";s:10:\"07/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:24;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20220908\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/08/2022 12:04 pm\";s:3:\"end\";s:10:\"09/26/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:25;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_email_summaries_20211127\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:58:\"Upgrade to MonsterInsights Pro to get weekly email reports\";s:7:\"content\";s:636:\"Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With our new feature, Email Summaries, you can now view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site\'s performance without logging in to WordPress or going through different Analytics reports. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to enable the Email Summaries feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/27/2021 9:08 pm\";s:3:\"end\";s:10:\"12/25/2021\";}i:26;a:8:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20211127\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:77:\"Get access to Google Search Keywords data by upgrading to MonsterInsights Pro\";s:7:\"content\";s:606:\"Do you want to find out which search terms from Google bring your site the most visitors? <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">Upgrade to MonsterInsights PRO</a> today and get access to the <a href=\"https://www.monsterinsights.com/feature/search-console-report/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">Search Console Report</a> and more directly in your WordPress admin.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"11/27/2021 9:08 pm\";s:3:\"end\";s:10:\"12/25/2021\";}i:27;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20220718\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/18/2022 2:14 am\";s:3:\"end\";s:10:\"08/05/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:28;a:10:{s:2:\"id\";s:67:\"monsterinsights_notification_upgrade_for_custom_dimensions_20220719\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:177:\"Upgrade to enable Custom Dimensions. Track logged in users, determine when is your best time to post, measure if your SEO strategy is working, and find your most popular author.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/19/2022 2:07 pm\";s:3:\"end\";s:10:\"08/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:29;a:10:{s:2:\"id\";s:67:\"monsterinsights_notification_upgrade_for_custom_dimensions_20220626\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:177:\"Upgrade to enable Custom Dimensions. Track logged in users, determine when is your best time to post, measure if your SEO strategy is working, and find your most popular author.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:57 pm\";s:3:\"end\";s:10:\"07/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:30;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20211115\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:46:\"Add More File Extensions to Track as Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:19:\"11/15/2021 11:44 am\";s:3:\"end\";s:10:\"12/03/2021\";}i:31;a:10:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20220324\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:27:\"See Top Performing Keywords\";s:7:\"content\";s:308:\"<a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to see which keywords are driving traffic to your website so you can focus on what\'s working.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 2:59 am\";s:3:\"end\";s:10:\"04/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:32;a:10:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20220324\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:45:\"Upgrade to Unlock Advanced Tracking & Reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 2:54 am\";s:3:\"end\";s:10:\"05/01/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:33;a:10:{s:2:\"id\";s:55:\"monsterinsights_notification_headline_analyzer_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:56:\"Try the Headline Analyzer to Boost Your Clicks & Traffic\";s:7:\"content\";s:375:\"Try the <a href=\"https://www.monsterinsights.com/announcing-monsterinsights-new-headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">MonsterInsights Headline Analyzer</a> tool. We built it to help increase engagement and make your content get more traffic from search engines.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:166:\"https://www.monsterinsights.com/headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"06/26/2022 11:25 pm\";s:3:\"end\";s:10:\"08/23/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:34;a:10:{s:2:\"id\";s:67:\"monsterinsights_notification_upgrade_for_custom_dimensions_20220908\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:177:\"Upgrade to enable Custom Dimensions. Track logged in users, determine when is your best time to post, measure if your SEO strategy is working, and find your most popular author.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/08/2022 12:31 pm\";s:3:\"end\";s:10:\"09/26/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:35;a:10:{s:2:\"id\";s:55:\"monsterinsights_notification_headline_analyzer_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:56:\"Try the Headline Analyzer to Boost Your Clicks & Traffic\";s:7:\"content\";s:375:\"Try the <a href=\"https://www.monsterinsights.com/announcing-monsterinsights-new-headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">MonsterInsights Headline Analyzer</a> tool. We built it to help increase engagement and make your content get more traffic from search engines.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:166:\"https://www.monsterinsights.com/headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"03/24/2022 12:57 pm\";s:3:\"end\";s:10:\"05/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:36;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20220907\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"09/07/2022 9:22 pm\";s:3:\"end\";s:10:\"09/25/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:37;a:10:{s:2:\"id\";s:55:\"monsterinsights_notification_headline_analyzer_20220910\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:56:\"Try the Headline Analyzer to Boost Your Clicks & Traffic\";s:7:\"content\";s:375:\"Try the <a href=\"https://www.monsterinsights.com/announcing-monsterinsights-new-headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">MonsterInsights Headline Analyzer</a> tool. We built it to help increase engagement and make your content get more traffic from search engines.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:166:\"https://www.monsterinsights.com/headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"09/10/2022 9:05 pm\";s:3:\"end\";s:10:\"11/07/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:38;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_email_summaries_20220324\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:24:\"Get Weekly Email Reports\";s:7:\"content\";s:615:\"Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With Email Summaries, you can view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site\'s performance without logging in to WordPress or going through different analytics reports. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to enable the Email Summaries feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 3:01 am\";s:3:\"end\";s:10:\"04/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:39;a:10:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20221108\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:45:\"Upgrade to Unlock Advanced Tracking & Reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:24 am\";s:3:\"end\";s:10:\"12/16/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:40;a:8:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20211203\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:71:\"Upgrade to MonsterInsights Pro and unlock advanced tracking and reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"12/03/2021 12:02 pm\";s:3:\"end\";s:10:\"01/10/2022\";}i:41;a:10:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"03/24/2022 12:57 pm\";s:3:\"end\";s:10:\"04/16/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:42;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20220731\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/31/2022 2:10 am\";s:3:\"end\";s:10:\"08/28/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:43;a:10:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20220626\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"06/26/2022 10:35 pm\";s:3:\"end\";s:10:\"07/19/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:44;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20220720\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:28:\"Track Your Website Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"07/20/2022 2:19 pm\";s:3:\"end\";s:10:\"08/07/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:45;a:8:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20211108\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:33:\"Traffic from Mobile Devices is 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2021 12:18 am\";s:3:\"end\";s:10:\"11/21/2021\";}i:46;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20211227\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:46:\"Add More File Extensions to Track as Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"12/27/2021 1:00 am\";s:3:\"end\";s:10:\"01/14/2022\";}i:47;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20220906\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 Visitors Found Your Site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"09/06/2022 9:24 pm\";s:3:\"end\";s:10:\"10/04/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:48;a:8:{s:2:\"id\";s:55:\"monsterinsights_notification_headline_analyzer_20211227\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:48:\"Headline Analyzer to Boost Your Clicks & Traffic\";s:7:\"content\";s:662:\"Did you know that 36% of SEO experts think the headline is the most important SEO element? Yet many website owners don’t know how to optimize their headlines for SEO and clicks. Instead, they write copy and hope for the best, only to see disappointing results. Now there’s an easier way! <br><br><a href=\"https://www.monsterinsights.com/announcing-monsterinsights-new-headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\" target=\"_blank\">With the MonsterInsights Headline Analyzer</a>, you can get targeted suggestions to improve your headlines, right in the WordPress editor.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:197:\"https://www.monsterinsights.com/announcing-monsterinsights-new-headline-analyzer/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/27/2021 1:44 am\";s:3:\"end\";s:10:\"02/23/2022\";}i:49;a:10:{s:2:\"id\";s:53:\"monsterinsights_notification_install_wpforms_20220910\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:37:\"Create a Contact Form in Only Minutes\";s:7:\"content\";s:64:\"Install WPForms and create contact forms in a matter of minutes.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:0:{}s:5:\"start\";s:18:\"09/10/2022 9:05 pm\";s:3:\"end\";s:10:\"10/08/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:50;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 2:54 am\";s:3:\"end\";s:10:\"04/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:51;a:10:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20220910\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"09/10/2022 8:59 pm\";s:3:\"end\";s:10:\"10/03/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:52;a:8:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20220106\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:33:\"Traffic from Mobile Devices is 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"01/06/2022 11:04 pm\";s:3:\"end\";s:10:\"01/19/2022\";}i:53;a:7:{s:2:\"id\";s:43:\"monsterinsights_notification_year_in_review\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:5:\"start\";s:10:\"2022-01-01\";s:3:\"end\";s:10:\"2022-01-14\";s:5:\"title\";s:32:\"View 2021 Year in Review report!\";s:7:\"content\";s:100:\"See how your website performed this year and find tips along the way to help grow even more in 2022!\";s:4:\"btns\";a:1:{s:10:\"learn_more\";a:2:{s:3:\"url\";s:90:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports#/year-in-review\";s:4:\"text\";s:10:\"Learn More\";}}}i:54;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20220626\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 Visitors Found Your Site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"06/26/2022 3:37 am\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:55;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20211227\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:55:\"Upgrade to MonsterInsights Pro to Track Form Conversion\";s:7:\"content\";s:719:\"Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\" target=\"_blank\">MonsterInsights Pro</a> to track <a href=\"https://www.monsterinsights.com/addon/forms/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\" target=\"_blank\">form conversions in Google Analytics.</a>\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"12/27/2021 12:59 am\";s:3:\"end\";s:10:\"01/14/2022\";}i:56;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20220731\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 Visitors Found Your Site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"07/31/2022 2:10 am\";s:3:\"end\";s:10:\"08/28/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:57;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 2:54 am\";s:3:\"end\";s:10:\"04/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:58;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20211203\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:55:\"Upgrade to MonsterInsights Pro to Track Form Conversion\";s:7:\"content\";s:719:\"Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">MonsterInsights Pro</a> to track <a href=\"https://www.monsterinsights.com/addon/forms/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">form conversions in Google Analytics.</a>\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/03/2021 2:51 pm\";s:3:\"end\";s:10:\"12/21/2021\";}i:59;a:10:{s:2:\"id\";s:53:\"monsterinsights_notification_install_wpforms_20220626\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:37:\"Create a Contact Form in Only Minutes\";s:7:\"content\";s:64:\"Install WPForms and create contact forms in a matter of minutes.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:0:{}s:5:\"start\";s:19:\"06/26/2022 11:25 pm\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:60;a:8:{s:2:\"id\";s:62:\"monsterinsights_notification_to_setup_affiliate_links_20211227\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Set Up Affiliate Link Tracking\";s:7:\"content\";s:556:\"By tracking your affiliate links in Google Analytics, you can gather all the data you need to optimize your links for maximizing affiliate revenue. You can track affiliate link clicks on your website with little configuration needed.<br><br><a href=\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\" target=\"_blank\">In this article</a>, we’ll show you how to set up affiliate link tracking in WordPress.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:9:\"read_more\";a:3:{s:3:\"url\";s:199:\"https://www.monsterinsights.com/how-to-set-up-affiliate-link-tracking-in-wordpress/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.3.0\";s:4:\"text\";s:9:\"Read More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/27/2021 1:44 am\";s:3:\"end\";s:10:\"01/19/2022\";}i:61;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20221108\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:30 am\";s:3:\"end\";s:10:\"12/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:62;a:10:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20221108\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:30:\"Traffic From Mobile Devices 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:24 am\";s:3:\"end\";s:10:\"11/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:63;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20221108\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.9.1\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"11/08/2022 12:32 am\";s:3:\"end\";s:10:\"11/26/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:64;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_email_summaries_20220908\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:24:\"Get Weekly Email Reports\";s:7:\"content\";s:615:\"Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With Email Summaries, you can view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site\'s performance without logging in to WordPress or going through different analytics reports. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to enable the Email Summaries feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/08/2022 12:23 pm\";s:3:\"end\";s:10:\"10/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:65;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20220324\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"03/24/2022 2:59 am\";s:3:\"end\";s:10:\"04/11/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:66;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20220626\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 3:41 am\";s:3:\"end\";s:10:\"07/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:67;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20220718\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/18/2022 1:26 am\";s:3:\"end\";s:10:\"08/05/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:68;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_google_optimize_20220910\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:21:\"A/B Test Your Website\";s:7:\"content\";s:771:\"<a href=\"https://www.monsterinsights.com/addon/google-optimize/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">Google Optimize</a> is a free A/B testing and personalization product by Google that lets you easily conduct experiments to see what content, images, and layouts work best on your site. With Google Optimize, you can use split testing and personalization to create online experiences that engage and delight your customers. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to unlock the Google Optimize addon.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"09/10/2022 8:54 pm\";s:3:\"end\";s:10:\"10/08/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:69;a:10:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20220908\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:27:\"See Top Performing Keywords\";s:7:\"content\";s:308:\"<a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to see which keywords are driving traffic to your website so you can focus on what\'s working.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/08/2022 12:03 pm\";s:3:\"end\";s:10:\"10/06/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:70;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20220718\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.7.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"07/18/2022 3:29 pm\";s:3:\"end\";s:10:\"08/05/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:71;a:10:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20220906\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:45:\"Upgrade to Unlock Advanced Tracking & Reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/06/2022 11:53 pm\";s:3:\"end\";s:10:\"10/14/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:72;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20220907\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.8.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"09/07/2022 12:26 am\";s:3:\"end\";s:10:\"09/25/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:73;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_email_summaries_20220626\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:24:\"Get Weekly Email Reports\";s:7:\"content\";s:615:\"Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With Email Summaries, you can view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site\'s performance without logging in to WordPress or going through different analytics reports. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to enable the Email Summaries feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:57 pm\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:74;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_google_optimize_20220324\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:21:\"A/B Test Your Website\";s:7:\"content\";s:771:\"<a href=\"https://www.monsterinsights.com/addon/google-optimize/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">Google Optimize</a> is a free A/B testing and personalization product by Google that lets you easily conduct experiments to see what content, images, and layouts work best on your site. With Google Optimize, you can use split testing and personalization to create online experiences that engage and delight your customers. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to unlock the Google Optimize addon.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.4.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"03/24/2022 12:57 pm\";s:3:\"end\";s:10:\"04/21/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:75;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_google_optimize_20220626\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:21:\"A/B Test Your Website\";s:7:\"content\";s:771:\"<a href=\"https://www.monsterinsights.com/addon/google-optimize/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">Google Optimize</a> is a free A/B testing and personalization product by Google that lets you easily conduct experiments to see what content, images, and layouts work best on your site. With Google Optimize, you can use split testing and personalization to create online experiences that engage and delight your customers. <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to unlock the Google Optimize addon.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:57 pm\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:76;a:10:{s:2:\"id\";s:71:\"monsterinsights_notification_upgrade_for_search_console_report_20220626\";s:4:\"icon\";s:7:\"warning\";s:5:\"title\";s:27:\"See Top Performing Keywords\";s:7:\"content\";s:308:\"<a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\" target=\"_blank\">Upgrade to MonsterInsights Pro</a> to see which keywords are driving traffic to your website so you can focus on what\'s working.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 8:53 pm\";s:3:\"end\";s:10:\"07/24/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:77;a:8:{s:2:\"id\";s:51:\"monsterinsights_notification_mobile_device_20211213\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:33:\"Traffic from Mobile Devices is 0%\";s:7:\"content\";s:525:\"Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">how your site looks</a> on mobile and make sure all your content can be accessed correctly.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:139:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=devices&monsterinsights-highlight=devices\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:210:\"https://www.wpbeginner.com/beginners-guide/how-to-preview-the-mobile-layout-of-your-site/?utm_source=monsterinsights&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"12/13/2021 10:55 pm\";s:3:\"end\";s:10:\"12/26/2021\";}i:78;a:8:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20211205\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:46:\"Add More File Extensions to Track as Downloads\";s:7:\"content\";s:808:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:228:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"12/05/2021 8:15 pm\";s:3:\"end\";s:10:\"12/23/2021\";}i:79;a:8:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20211227\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:35:\"See how 0 visitors found your site!\";s:7:\"content\";s:122:\"Your website has been visited by 0 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:187:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"12/27/2021 6:53 pm\";s:3:\"end\";s:10:\"01/24/2022\";}i:80;a:8:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20211213\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:44:\"Only 0% of your visitors return to your site\";s:7:\"content\";s:498:\"For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. <a href=\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\" target=\"_blank\">In this article</a>, we’ll show you 7 proven ways to increase your returning visitor rate.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:2:{s:11:\"view_report\";a:2:{s:3:\"url\";s:153:\"https://flaphotography.com/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=newvsreturning&monsterinsights-highlight=newvsreturning\";s:4:\"text\";s:11:\"View Report\";}s:10:\"learn_more\";a:3:{s:3:\"url\";s:200:\"https://www.monsterinsights.com/proven-ways-to-increase-your-returning-visitor-rate/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.2.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:19:\"12/13/2021 10:55 pm\";s:3:\"end\";s:10:\"12/26/2021\";}i:81;a:10:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20220626\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:45:\"Upgrade to Unlock Advanced Tracking & Reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=8.6.0\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"06/26/2022 3:37 am\";s:3:\"end\";s:10:\"08/03/2022\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}}s:9:\"dismissed\";a:0:{}}','no'),(9107,'monsterinsights_site_tt','dbacdf7208b47b312462c288325198d90001070c083fcbfbc505b1c34ee0974e4f815c325cdd535dc67db5570c77f4ce3baba6cccfe39d0f407e68fd57a874fe','yes'),(7779,'et_pb_contact_form_0a9582068c7ebc10768c05d00d470187','off','yes'),(11586,'wpseo_sitemap_737_cache_validator','qNnj','no'),(34112,'et_pb_contact_form_aeb0fe074d9c5e4909642313a2dea64e','off','yes'),(34114,'et_pb_contact_form_1b139f8eff3c0d9d308c272d93661bcd','off','yes'),(34192,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:38:\"date-time-picker-field/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1670647019;s:11:\"plugin_path\";s:49:\"date-time-picker-field/date-time-picker-field.php\";}}s:7:\"abspath\";s:33:\"/home/flapst5/flaphotography.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:49:\"date-time-picker-field/date-time-picker-field.php\";s:8:\"sdk_path\";s:38:\"date-time-picker-field/vendor/freemius\";s:7:\"version\";s:5:\"2.4.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1670647019;}}','yes'),(34193,'fs_debug_mode','','yes'),(34194,'fs_accounts','a:5:{s:21:\"id_slug_type_path_map\";a:1:{i:7830;a:3:{s:4:\"slug\";s:16:\"date-time-picker\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:49:\"date-time-picker-field/date-time-picker-field.php\";}}s:11:\"plugin_data\";a:1:{s:16:\"date-time-picker\";a:15:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:49:\"date-time-picker-field/date-time-picker-field.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1656778025;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:3:\"2.2\";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:18:\"flaphotography.com\";s:9:\"server_ip\";s:12:\"76.70.51.219\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1656778025;s:7:\"version\";s:3:\"2.2\";}s:15:\"prev_is_premium\";b:0;}}s:13:\"file_slug_map\";a:1:{s:49:\"date-time-picker-field/date-time-picker-field.php\";s:16:\"date-time-picker\";}s:7:\"plugins\";a:1:{s:16:\"date-time-picker\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:32:\"Date and Time Picker by Input WP\";s:4:\"slug\";s:16:\"date-time-picker\";s:12:\"premium_slug\";s:24:\"date-time-picker-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:49:\"date-time-picker-field/date-time-picker-field.php\";s:7:\"version\";s:3:\"2.2\";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:10:\"public_key\";s:32:\"pk_5c8d4db8cfdb8033ce2dcbad06114\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7830\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"5d6679fe546eb6b7ae06eb477a739d30\";}','yes'),(34195,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(34196,'_dtpicker_new_integration','s:129:\"a:1:{i:0;a:4:{s:5:\"label\";s:11:\"Manual Lite\";s:6:\"plugin\";s:6:\"manual\";s:6:\"picker\";i:0;s:8:\"selector\";s:16:\"date-time-picker\";}}\";','yes'),(34197,'_dtpicker_lite_imported_integration','1','yes'),(34198,'fs_api_cache','a:0:{}','no'),(26275,'rewrite_rules','a:351:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s: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:15:\"divi_overlay/?$\";s:32:\"index.php?post_type=divi_overlay\";s:45:\"divi_overlay/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=divi_overlay&feed=$matches[1]\";s:40:\"divi_overlay/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=divi_overlay&feed=$matches[1]\";s:32:\"divi_overlay/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=divi_overlay&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s: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:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=layout_category&term=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=layout_category&term=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:51:\"index.php?taxonomy=layout_category&term=$matches[1]\";s:51:\"layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:46:\"layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:27:\"layout_tag/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=layout_tag&term=$matches[1]&embed=true\";s:39:\"layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=layout_tag&term=$matches[1]&paged=$matches[2]\";s:21:\"layout_tag/([^/]+)/?$\";s:46:\"index.php?taxonomy=layout_tag&term=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_pack&term=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_pack&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_pack&term=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_type&term=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_type&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_type&term=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:59:\"index.php?taxonomy=module_width&term=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=module_width&term=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:48:\"index.php?taxonomy=module_width&term=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:52:\"index.php?taxonomy=scope&term=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?taxonomy=scope&term=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:41:\"index.php?taxonomy=scope&term=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:51:\"et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:32:\"et_tb_item_type/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&embed=true\";s:44:\"et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&paged=$matches[2]\";s:26:\"et_tb_item_type/([^/]+)/?$\";s:51:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]\";s:38:\"et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:31:\"et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:39:\"et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:46:\"et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:35:\"et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:27:\"et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:38:\"divi_overlay/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"divi_overlay/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"divi_overlay/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"divi_overlay/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"divi_overlay/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"divi_overlay/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"divi_overlay/(.+?)/embed/?$\";s:45:\"index.php?divi_overlay=$matches[1]&embed=true\";s:31:\"divi_overlay/(.+?)/trackback/?$\";s:39:\"index.php?divi_overlay=$matches[1]&tb=1\";s:51:\"divi_overlay/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?divi_overlay=$matches[1]&feed=$matches[2]\";s:46:\"divi_overlay/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?divi_overlay=$matches[1]&feed=$matches[2]\";s:39:\"divi_overlay/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?divi_overlay=$matches[1]&paged=$matches[2]\";s:46:\"divi_overlay/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?divi_overlay=$matches[1]&cpage=$matches[2]\";s:35:\"divi_overlay/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?divi_overlay=$matches[1]&page=$matches[2]\";s:41:\"itsec-dashboard/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"itsec-dashboard/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"itsec-dashboard/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"itsec-dashboard/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"itsec-dashboard/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"itsec-dashboard/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"itsec-dashboard/(.+?)/embed/?$\";s:48:\"index.php?itsec-dashboard=$matches[1]&embed=true\";s:34:\"itsec-dashboard/(.+?)/trackback/?$\";s:42:\"index.php?itsec-dashboard=$matches[1]&tb=1\";s:42:\"itsec-dashboard/(.+?)/page/?([0-9]{1,})/?$\";s:55:\"index.php?itsec-dashboard=$matches[1]&paged=$matches[2]\";s:49:\"itsec-dashboard/(.+?)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?itsec-dashboard=$matches[1]&cpage=$matches[2]\";s:38:\"itsec-dashboard/(.+?)(?:/([0-9]+))?/?$\";s:54:\"index.php?itsec-dashboard=$matches[1]&page=$matches[2]\";s:43:\"itsec-dash-card/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"itsec-dash-card/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"itsec-dash-card/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"itsec-dash-card/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"itsec-dash-card/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"itsec-dash-card/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"itsec-dash-card/([^/]+)/embed/?$\";s:48:\"index.php?itsec-dash-card=$matches[1]&embed=true\";s:36:\"itsec-dash-card/([^/]+)/trackback/?$\";s:42:\"index.php?itsec-dash-card=$matches[1]&tb=1\";s:44:\"itsec-dash-card/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?itsec-dash-card=$matches[1]&paged=$matches[2]\";s:51:\"itsec-dash-card/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?itsec-dash-card=$matches[1]&cpage=$matches[2]\";s:40:\"itsec-dash-card/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?itsec-dash-card=$matches[1]&page=$matches[2]\";s:32:\"itsec-dash-card/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"itsec-dash-card/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"itsec-dash-card/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"itsec-dash-card/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"itsec-dash-card/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"itsec-dash-card/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"et_code_snippet_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:56:\"et_code_snippet_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:37:\"et_code_snippet_type/([^/]+)/embed/?$\";s:53:\"index.php?et_code_snippet_type=$matches[1]&embed=true\";s:49:\"et_code_snippet_type/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?et_code_snippet_type=$matches[1]&paged=$matches[2]\";s:31:\"et_code_snippet_type/([^/]+)/?$\";s:42:\"index.php?et_code_snippet_type=$matches[1]\";s:43:\"et_code_snippet/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"et_code_snippet/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"et_code_snippet/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"et_code_snippet/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"et_code_snippet/([^/]+)/embed/?$\";s:63:\"index.php?post_type=et_code_snippet&name=$matches[1]&embed=true\";s:36:\"et_code_snippet/([^/]+)/trackback/?$\";s:57:\"index.php?post_type=et_code_snippet&name=$matches[1]&tb=1\";s:44:\"et_code_snippet/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&paged=$matches[2]\";s:51:\"et_code_snippet/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&cpage=$matches[2]\";s:40:\"et_code_snippet/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?post_type=et_code_snippet&name=$matches[1]&page=$matches[2]\";s:32:\"et_code_snippet/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"et_code_snippet/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"et_code_snippet/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"et_code_snippet/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_footer_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=85&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'),(26634,'updraft_lock_e31415f75673','0','no'),(23258,'wpseo_sitemap_210_cache_validator','6Yi9F','no'),(14512,'et_pb_contact_form_a4069b02af136c8a01e4e2abf583ebb5','off','yes'),(14525,'et_pb_contact_form_e5f41fb99431ae5f6bc6b0f720e0b637','off','yes'),(14522,'et_pb_contact_form_f0196ef5706a9910fbbc76cb2cf63d95','off','yes'),(14487,'et_pb_contact_form_9d56e7ae63b93c8a4df56b23d4e9c74c','off','yes'),(14549,'et_pb_contact_form_391277bcfd1e209d615a9a7f0ddef505','off','yes'),(14556,'et_pb_contact_form_0dc0f25921ff308c6187789b559fa21e','off','yes'),(14564,'et_pb_contact_form_2e00b5aecc97c17f84bb7e51e7bb9219','off','yes'),(11191,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"flalogsta@flapstart.com\";s:7:\"version\";s:5:\"5.8.6\";s:9:\"timestamp\";i:1666054049;}','no'),(15589,'edd_sl_3d8f46b8f9b43c7baf2fa5919fce76c4','a:2:{s:7:\"timeout\";i:1662854719;s:5:\"value\";s:28025:\"{\"new_version\":\"1.8.7.8\",\"stable_version\":\"1.8.7.8\",\"name\":\"Divi Bars\",\"slug\":\"divi-bars\",\"url\":\"https:\\/\\/divilife.com\\/downloads\\/divi-bars\\/?changelog=1\",\"last_updated\":\"2022-06-22 15:39:28\",\"homepage\":\"https:\\/\\/divilife.com\\/downloads\\/divi-bars\\/\",\"package\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTY2Mjk5ODcxOTphNjI4YzI1YjYxZTJmNDVkYWMxMTFjMDdlYmQ3YjY2Mjo0ODc2MTo1OTIzNDJhYmMyMWNlZTZjYzFhMTM0NDhkZGI3NzJiYTpodHRwc0AvL2ZsYXBob3RvZ3JhcGh5LmNvbTow\",\"download_link\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTY2Mjk5ODcxOTphNjI4YzI1YjYxZTJmNDVkYWMxMTFjMDdlYmQ3YjY2Mjo0ODc2MTo1OTIzNDJhYmMyMWNlZTZjYzFhMTM0NDhkZGI3NzJiYTpodHRwc0AvL2ZsYXBob3RvZ3JhcGh5LmNvbTow\",\"sections\":{\"description\":\"<p>Divi Bars lets you create gorgeous slide-in promo bars, notification bars, optin bars, and so much more; using the power and flexibility of the Divi Builder!<\\/p>\\n<p>Promote any content, any time, and on any page of your website. Break away from the typical stale promo bars your visitors are used to seeing, and instead unleash your creativity with Divi Bars; and insert anything you can imagine via the Divi Builder.<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-bars\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\",\"changelog\":\"<p><strong>NOTE: Make sure to Clear ALL Caches after updating including Divi\\u2019s static CSS cache and your browser cache.<\\/strong><br \\/>\\nVersion 1.8.7.8 \\u00a0(06\\/22\\/22)<\\/p>\\n<ul>\\n<li>Remove margin-top in HTML tag when \\\"Do not Fix to Top\\\" is enabled if required only.<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.7 \\u00a0(05\\/12\\/22)<\\/p>\\n<ul>\\n<li>Remove white space at the bottom of the page when Divi Bars shows<\\/li>\\n<li>Fix incompatibility issues with third-party plugins<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.6 \\u00a0(04\\/20\\/22)<\\/p>\\n<ul>\\n<li>New Display Locations options: All pages, All posts<\\/li>\\n<li>Archive and Author fields enabled by default<\\/li>\\n<li>Improve fixed elements positioning when Divi Bars is active<\\/li>\\n<li>Better support for third-party cache plugins and Divi Extra theme<\\/li>\\n<li>Fix issues with PHP 8<\\/li>\\n<li>Fix positioning issue with fixed Divi elements<\\/li>\\n<li>Minor fixes<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.5 \\u00a0(01\\/20\\/22)<\\/p>\\n<ul>\\n<li>Fix issue showing notice error on header<\\/li>\\n<li>Change main Divi Bars calls order initialization to avoid issues with third-party plugins<\\/li>\\n<li>Add conditions to avoid issues with third-party services trying to initialize Divi Overlays without Divi core<\\/li>\\n<li>Optimize cache efficiency<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.4 \\u00a0(12\\/13\\/21)<\\/p>\\n<ul>\\n<li>Fix issue mixed Divi styles<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.3 \\u00a0(12\\/02\\/21)<\\/p>\\n<ul>\\n<li>New Display Locations by Categories, Tags, Archive and Author<\\/li>\\n<li>Force render option<\\/li>\\n<li>Show for Guests only<\\/li>\\n<li>Show for Registered Users only<\\/li>\\n<li>Improvements on feature automatic triggers<\\/li>\\n<li>Add new clear cache functions on plugin activation\\/deactivation, switching themes, post save and when using Divi Clear button for \\\"Static CSS File Generation and improve Divi cache support<\\/li>\\n<li>Improve support for Gravity Forms, googleRecaptcha and Stripe plugins<\\/li>\\n<li>Update compatibility with Divi CSS<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.1 \\u00a0(8\\/17\\/21)<\\/p>\\n<ul>\\n<li>Fixed \\\"Start &amp; End Time\\\" schedule on admin post edit<\\/li>\\n<li>Better Extra theme support<\\/li>\\n<li>Improve compatibility with Divi Builder plugin<\\/li>\\n<li>Improvements on Schedule feature<\\/li>\\n<li>Support Divi Icon Party and Divi Ghoster plugins<\\/li>\\n<li>Fix iframes width inside Divi Bars<\\/li>\\n<li>Small fixes<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7 \\u00a0(5\\/5\\/21)<\\/p>\\n<ul>\\n<li>Rework animations by using jQuery core only. Remove old jQuery Transition Library.<\\/li>\\n<li>Support Extra theme fixed nav menu<\\/li>\\n<li>Add JS files only when triggers are found<\\/li>\\n<li>Improve clear cache functionality on post save<\\/li>\\n<li>Enable cache on plugin activation<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.6 \\u00a0(10\\/19\\/20)<\\/p>\\n<ul>\\n<li>Add cache functionality to speed-up site load. This can be enabled\\/disabled on Divi Bars admin settings page<\\/li>\\n<li>Add Custom Elements CSS Selector back to Divi Bars Settings<\\/li>\\n<li>Support Divi Slide CSS transitions when Divi Bars is active<\\/li>\\n<li>Support Ultimate Member plugin<\\/li>\\n<li>Improve ajax intercept function to avoid conflicts issues with other plugins<\\/li>\\n<li>Improve method to search Divi Bars triggers in shortcodes<\\/li>\\n<li>Update Divi Bars styles based on latest Divi updates<\\/li>\\n<li>Re-work all cache functionality<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.5 \\u00a0(04\\/16\\/20)<\\/p>\\n<ul>\\n<li>Optimize Divi Bars speed<\\/li>\\n<li>Optimize Divi Bars admin functionality<\\/li>\\n<li>Add feature multiple divi bars<\\/li>\\n<li>Improve push-page functionality<\\/li>\\n<li>Remove modernizr<\\/li>\\n<li>Add license file<\\/li>\\n<li>Remove non-required Snap JS library<\\/li>\\n<li>Fix all error\\/warnings reported on phpcs scanner<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.4 \\u00a0(04\\/08\\/20)<\\/p>\\n<ul>\\n<li>Add Divi Bars enhancement to be automatically enabled as Divi post type on plugin activation<\\/li>\\n<li>Update network wide functions to be per site focus<\\/li>\\n<li>Improve Divi styles handling<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.3 \\u00a0(04\\/06\\/20)<\\/p>\\n<ul>\\n<li>Improve Extra Theme support<\\/li>\\n<li>Support Divi Email Opt-in module<\\/li>\\n<li>Support new Divi WooCommerce modules<\\/li>\\n<li>Fix issue not saving empty value on \\\"Add Exceptions\\\" field when Display Locations value is \\\"All pages\\\"<\\/li>\\n<li>Add additional conditions to prevent PHP Notice when \\\"Add Exceptions\\\" and \\\"Only specific pages\\\" fields are empty<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.2 \\u00a0(04\\/01\\/20)<\\/p>\\n<ul>\\n<li>Fixed License issues on multisite<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.1 \\u00a0(02\\/14\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6 \\u00a0(02\\/14\\/20)<\\/p>\\n<ul>\\n<li>Improve License page styles and functionality<\\/li>\\n<li>Improve plugin compatibility with Divi<\\/li>\\n<li>Improve Divi CSS Static handle<\\/li>\\n<li>Prevent front-end resources from being loaded on Licensing page<\\/li>\\n<li>Fixed the \\\"infinite spinning wheel\\\" permalink issue<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5.3 \\u00a0(01\\/16\\/20)<\\/p>\\n<ul>\\n<li>Add custom jQuery UI styles<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5.2 \\u00a0(01\\/14\\/20)<\\/p>\\n<ul>\\n<li>Force Divi layout render when a singular post is not being displayed<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5 \\u00a0(12\\/21\\/19)<\\/p>\\n<ul>\\n<li>Fixed Divi Customize styles not showing up for Divi Bars content<\\/li>\\n<li>Improved way to get current page\\/post ID when Divi Bars wasn\'t showing up<\\/li>\\n<li>Removed old Monarch fix by being replaced for a better way to improve compatibility with third-party plugins like Monarch, Bloom, etc.<\\/li>\\n<li>Improved URL CSS file from Divi Customize styles Divi Bars<\\/li>\\n<\\/ul>\\n<p>Version 1.8.2 \\u00a0(12\\/12\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 1.8.1 \\u00a0(12\\/9\\/19)<\\/p>\\n<ul>\\n<li>Support manual offsets WP Timezone<\\/li>\\n<\\/ul>\\n<p>Version 1.8.0 \\u00a0(11\\/8\\/19)<\\/p>\\n<ul>\\n<li>Added proper support for all Divi Custom CSS so now\\u00a0\\\"Output Styles inline\\\" Divi Theme option won\'t be required anymore for custom button styling and others to show properly.<\\/li>\\n<\\/ul>\\n<p>Version 1.7.4 \\u00a0(11\\/7\\/19)<\\/p>\\n<ul>\\n<li>Improve code on Divi Bars triggered by hash<\\/li>\\n<\\/ul>\\n<p>Version 1.7.3 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 1.7.2 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improve support for Custom Post Types<\\/li>\\n<li>Reduce requests to licensing server<\\/li>\\n<\\/ul>\\n<p>Version 1.7.1 \\u00a0(09\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve way to getting time zone from WordPress options<\\/li>\\n<\\/ul>\\n<p>Version 1.7.0 \\u00a0(09\\/10\\/19)<\\/p>\\n<ul>\\n<li>Hide License Key on activation screen once license key is activated<\\/li>\\n<li>Trigger Bar from links containing hash<\\/li>\\n<li>Improved Divi Bars detection in posts<\\/li>\\n<li>Optimized Display location field<\\/li>\\n<\\/ul>\\n<p>Version 1.6.3 \\u00a0(08\\/09\\/19)<\\/p>\\n<ul>\\n<li>Fixed transparent header issue when a site\'s header is 100% transparent and the bar is active and overlap\'s the logo with the first section of the page<\\/li>\\n<li>Fixed issue with Divi\'s search icon glitching with Divi Bar<\\/li>\\n<\\/ul>\\n<p>Version 1.6.3 \\u00a0(08\\/09\\/19)<\\/p>\\n<ul>\\n<li>Fixed transparent header issue when a site\'s header is 100% transparent and the bar is active and overlap\'s the logo with the first section of the page<\\/li>\\n<li>Fixed issue with Divi\'s search icon glitching with Divi Bar<\\/li>\\n<\\/ul>\\n<p>Version 1.6.2 \\u00a0(08\\/06\\/19)<\\/p>\\n<ul>\\n<li>Fixes and adjustments when Divi Primary menu has a transparent background<\\/li>\\n<\\/ul>\\n<p>Version 1.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Improved Divi Bars ID search<\\/li>\\n<li>Made other core improvements<\\/li>\\n<\\/ul>\\n<p>Version 1.5.0 \\u00a0(01\\/30\\/19)<\\/p>\\n<ul>\\n<li>Fix incompatibility with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 1.4.9 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix issue Exit intent conflict between Divi Bars and Mega Pro posts<\\/li>\\n<\\/ul>\\n<p>Version 1.4.8 \\u00a0(12\\/19\\/18)<\\/p>\\n<ul>\\n<li>Improve server compatibility with date\\/time<\\/li>\\n<\\/ul>\\n<p>Version 1.4.7 \\u00a0(12\\/14\\/18)<\\/p>\\n<ul>\\n<li>Improved how timezone is handled which fixed recurring scheduling issue with day not selected, and start\\/end feature not saving dates<\\/li>\\n<\\/ul>\\n<p>Version 1.4.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 1.4.5 \\u00a0(10\\/31\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the Divi countdown module not opening<\\/li>\\n<li>Fixed an issue with Scheduling End Dates not allowing future dates to be saved<\\/li>\\n<\\/ul>\\n<p>Version 1.4.4 \\u00a0(09\\/11\\/18)<\\/p>\\n<ul>\\n<li>Fix Full Width Header Full Screen enable Glitch<\\/li>\\n<\\/ul>\\n<p>Version 1.4.3 \\u00a0(09\\/11\\/18)<\\/p>\\n<ul>\\n<li>Improve default params to support Pre ES2015<\\/li>\\n<\\/ul>\\n<p>Version 1.4.2 \\u00a0(08\\/28\\/18)<\\/p>\\n<ul>\\n<li>Add support for non-fixed navigation in Extra Theme<\\/li>\\n<\\/ul>\\n<p>Version 1.4.1 \\u00a0(08\\/23\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Fixed bug in display locations feature<\\/li>\\n<li>Added better support for Divi\\u2019s vertical navigation option<\\/li>\\n<li>Fixed compatibility issue with Divi Overlays<\\/li>\\n<li>Decreased requests to Divi Life licensing feature<\\/li>\\n<\\/ul>\\n<p>Version 1.3<\\/p>\\n<ul>\\n<li>Internal Version<\\/li>\\n<\\/ul>\\n<p>Version 1.2.1 \\u00a0(07\\/02\\/18)<\\/p>\\n<ul>\\n<li>Added a new feature for adding exceptions when selecting \\u2018All Pages\\u2019 from the page\\/post selection.<\\/li>\\n<li>Changed the way that posts\\/pages are queried when choosing page\\/post selection to fix timeout errors and other errors that occurred on sites with a large number of posts.<\\/li>\\n<li>Enhanced the way page\\/post selection is done in Divi Bars to simplify and avoid confusion. Now there is only one place to select page\\/post regardless of what trigger or feature is used.<\\/li>\\n<li>Fixed issue with Divi Bars breaking header when Fixed Navigation is turned off in Divi Theme Options.<\\/li>\\n<li>Fixed several other minor bugs throughout plugin.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2 \\u00a0(06\\/18\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with Divi Bars adding unnecessary padding to areas of the page when the Divi Bar was active.<\\/li>\\n<li>Fixed an issue with Divi Bars forcing a fixed navigation header, even when it was turned off in Divi Theme Options.<\\/li>\\n<li>Fixed an issue with the automatic updater licensing system.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1 \\u00a0(05\\/31\\/18)<\\/p>\\n<ul>\\n<li>Fixed issue with licensing causing other post types to redirect to Divi Bars settings page when license was not activated.<\\/li>\\n<li>Fixed Issue with Divi Animations to cause elements to not show on front end.<\\/li>\\n<li>Added Support for Divi\\u2019s Animations inside of Divi Bars.<\\/li>\\n<li>Fixed Issue with Transparent Menus breaking Divi Bars.<\\/li>\\n<li>Fixed Issue with Divi\\u2019s Project Post Type not showing in list of specific pages to trigger Divi Bar on.<\\/li>\\n<li>Fixed issue with more than 10 Divi Bars causing older Divi Bars to not display.<\\/li>\\n<\\/ul>\\n<p>Version 1.1 \\u00a0(04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added new API licensing system.<\\/li>\\n<li>Fixed issue with Divi Bars conflicting with Divi\\u2019s Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4 \\u00a0(02\\/08\\/18)<\\/p>\\n<ul>\\n<li>Fixed compatibility with the Extra Theme<\\/li>\\n<li>Fixed issue with Fixed Nav breaking when resizing browser window<\\/li>\\n<li>Fixed bug with scheduling feature not being able to be turned off once enabled.<\\/li>\\n<li>Added URL Triggers feature to trigger a Divi Bar from URL<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>internal version for testing<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2 (12\\/11\\/17)<\\/p>\\n<ul>\\n<li>Fixed the issue where Divi Bars would partially break 2 and 3 column layout section in certain circumstances.<\\/li>\\n<li>Fixed an incompatibility with the Elegant Themes Monarch plugin that would add the Monarch social sharing buttons inside of Divi Bars when Monarch social sharing button were set up for inline sharing and set to either \\u201cBelow Content\\u201d or \\u201cAbove and Below.\\u201d<\\/li>\\n<li>Fixed an issue with Divi Bars not displaying correctly on archive pages, category pages, 404 pages, etc.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>internal version for testing<\\/li>\\n<\\/ul>\\n<p>Version 1.0 (11\\/21\\/17)<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Bars product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-bars\\/\\\">https:\\/\\/divilife.com\\/product\\/divi-bars\\/<\\/a><\\/p>\\n<p>&nbsp;<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:2:{s:2:\\\"1x\\\";s:84:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2017\\/11\\/divi-bars-featured-image-128x128.jpg\\\";s:2:\\\"2x\\\";s:84:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2017\\/11\\/divi-bars-featured-image-256x256.jpg\\\";}\",\"description\":[\"<p>Divi Bars lets you create gorgeous slide-in promo bars, notification bars, optin bars, and so much more; using the power and flexibility of the Divi Builder!<\\/p>\\n<p>Promote any content, any time, and on any page of your website. Break away from the typical stale promo bars your visitors are used to seeing, and instead unleash your creativity with Divi Bars; and insert anything you can imagine via the Divi Builder.<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-bars\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\"],\"changelog\":[\"<p><strong>NOTE: Make sure to Clear ALL Caches after updating including Divi\\u2019s static CSS cache and your browser cache.<\\/strong><br \\/>\\nVersion 1.8.7.8 \\u00a0(06\\/22\\/22)<\\/p>\\n<ul>\\n<li>Remove margin-top in HTML tag when \\\"Do not Fix to Top\\\" is enabled if required only.<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.7 \\u00a0(05\\/12\\/22)<\\/p>\\n<ul>\\n<li>Remove white space at the bottom of the page when Divi Bars shows<\\/li>\\n<li>Fix incompatibility issues with third-party plugins<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.6 \\u00a0(04\\/20\\/22)<\\/p>\\n<ul>\\n<li>New Display Locations options: All pages, All posts<\\/li>\\n<li>Archive and Author fields enabled by default<\\/li>\\n<li>Improve fixed elements positioning when Divi Bars is active<\\/li>\\n<li>Better support for third-party cache plugins and Divi Extra theme<\\/li>\\n<li>Fix issues with PHP 8<\\/li>\\n<li>Fix positioning issue with fixed Divi elements<\\/li>\\n<li>Minor fixes<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.5 \\u00a0(01\\/20\\/22)<\\/p>\\n<ul>\\n<li>Fix issue showing notice error on header<\\/li>\\n<li>Change main Divi Bars calls order initialization to avoid issues with third-party plugins<\\/li>\\n<li>Add conditions to avoid issues with third-party services trying to initialize Divi Overlays without Divi core<\\/li>\\n<li>Optimize cache efficiency<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.4 \\u00a0(12\\/13\\/21)<\\/p>\\n<ul>\\n<li>Fix issue mixed Divi styles<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.3 \\u00a0(12\\/02\\/21)<\\/p>\\n<ul>\\n<li>New Display Locations by Categories, Tags, Archive and Author<\\/li>\\n<li>Force render option<\\/li>\\n<li>Show for Guests only<\\/li>\\n<li>Show for Registered Users only<\\/li>\\n<li>Improvements on feature automatic triggers<\\/li>\\n<li>Add new clear cache functions on plugin activation\\/deactivation, switching themes, post save and when using Divi Clear button for \\\"Static CSS File Generation and improve Divi cache support<\\/li>\\n<li>Improve support for Gravity Forms, googleRecaptcha and Stripe plugins<\\/li>\\n<li>Update compatibility with Divi CSS<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7.1 \\u00a0(8\\/17\\/21)<\\/p>\\n<ul>\\n<li>Fixed \\\"Start &amp; End Time\\\" schedule on admin post edit<\\/li>\\n<li>Better Extra theme support<\\/li>\\n<li>Improve compatibility with Divi Builder plugin<\\/li>\\n<li>Improvements on Schedule feature<\\/li>\\n<li>Support Divi Icon Party and Divi Ghoster plugins<\\/li>\\n<li>Fix iframes width inside Divi Bars<\\/li>\\n<li>Small fixes<\\/li>\\n<\\/ul>\\n<p>Version 1.8.7 \\u00a0(5\\/5\\/21)<\\/p>\\n<ul>\\n<li>Rework animations by using jQuery core only. Remove old jQuery Transition Library.<\\/li>\\n<li>Support Extra theme fixed nav menu<\\/li>\\n<li>Add JS files only when triggers are found<\\/li>\\n<li>Improve clear cache functionality on post save<\\/li>\\n<li>Enable cache on plugin activation<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.6 \\u00a0(10\\/19\\/20)<\\/p>\\n<ul>\\n<li>Add cache functionality to speed-up site load. This can be enabled\\/disabled on Divi Bars admin settings page<\\/li>\\n<li>Add Custom Elements CSS Selector back to Divi Bars Settings<\\/li>\\n<li>Support Divi Slide CSS transitions when Divi Bars is active<\\/li>\\n<li>Support Ultimate Member plugin<\\/li>\\n<li>Improve ajax intercept function to avoid conflicts issues with other plugins<\\/li>\\n<li>Improve method to search Divi Bars triggers in shortcodes<\\/li>\\n<li>Update Divi Bars styles based on latest Divi updates<\\/li>\\n<li>Re-work all cache functionality<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.5 \\u00a0(04\\/16\\/20)<\\/p>\\n<ul>\\n<li>Optimize Divi Bars speed<\\/li>\\n<li>Optimize Divi Bars admin functionality<\\/li>\\n<li>Add feature multiple divi bars<\\/li>\\n<li>Improve push-page functionality<\\/li>\\n<li>Remove modernizr<\\/li>\\n<li>Add license file<\\/li>\\n<li>Remove non-required Snap JS library<\\/li>\\n<li>Fix all error\\/warnings reported on phpcs scanner<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.4 \\u00a0(04\\/08\\/20)<\\/p>\\n<ul>\\n<li>Add Divi Bars enhancement to be automatically enabled as Divi post type on plugin activation<\\/li>\\n<li>Update network wide functions to be per site focus<\\/li>\\n<li>Improve Divi styles handling<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.3 \\u00a0(04\\/06\\/20)<\\/p>\\n<ul>\\n<li>Improve Extra Theme support<\\/li>\\n<li>Support Divi Email Opt-in module<\\/li>\\n<li>Support new Divi WooCommerce modules<\\/li>\\n<li>Fix issue not saving empty value on \\\"Add Exceptions\\\" field when Display Locations value is \\\"All pages\\\"<\\/li>\\n<li>Add additional conditions to prevent PHP Notice when \\\"Add Exceptions\\\" and \\\"Only specific pages\\\" fields are empty<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.2 \\u00a0(04\\/01\\/20)<\\/p>\\n<ul>\\n<li>Fixed License issues on multisite<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6.1 \\u00a0(02\\/14\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<\\/ul>\\n<p>Version 1.8.6 \\u00a0(02\\/14\\/20)<\\/p>\\n<ul>\\n<li>Improve License page styles and functionality<\\/li>\\n<li>Improve plugin compatibility with Divi<\\/li>\\n<li>Improve Divi CSS Static handle<\\/li>\\n<li>Prevent front-end resources from being loaded on Licensing page<\\/li>\\n<li>Fixed the \\\"infinite spinning wheel\\\" permalink issue<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5.3 \\u00a0(01\\/16\\/20)<\\/p>\\n<ul>\\n<li>Add custom jQuery UI styles<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5.2 \\u00a0(01\\/14\\/20)<\\/p>\\n<ul>\\n<li>Force Divi layout render when a singular post is not being displayed<\\/li>\\n<\\/ul>\\n<p>Version 1.8.5 \\u00a0(12\\/21\\/19)<\\/p>\\n<ul>\\n<li>Fixed Divi Customize styles not showing up for Divi Bars content<\\/li>\\n<li>Improved way to get current page\\/post ID when Divi Bars wasn\'t showing up<\\/li>\\n<li>Removed old Monarch fix by being replaced for a better way to improve compatibility with third-party plugins like Monarch, Bloom, etc.<\\/li>\\n<li>Improved URL CSS file from Divi Customize styles Divi Bars<\\/li>\\n<\\/ul>\\n<p>Version 1.8.2 \\u00a0(12\\/12\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 1.8.1 \\u00a0(12\\/9\\/19)<\\/p>\\n<ul>\\n<li>Support manual offsets WP Timezone<\\/li>\\n<\\/ul>\\n<p>Version 1.8.0 \\u00a0(11\\/8\\/19)<\\/p>\\n<ul>\\n<li>Added proper support for all Divi Custom CSS so now\\u00a0\\\"Output Styles inline\\\" Divi Theme option won\'t be required anymore for custom button styling and others to show properly.<\\/li>\\n<\\/ul>\\n<p>Version 1.7.4 \\u00a0(11\\/7\\/19)<\\/p>\\n<ul>\\n<li>Improve code on Divi Bars triggered by hash<\\/li>\\n<\\/ul>\\n<p>Version 1.7.3 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 1.7.2 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improve support for Custom Post Types<\\/li>\\n<li>Reduce requests to licensing server<\\/li>\\n<\\/ul>\\n<p>Version 1.7.1 \\u00a0(09\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve way to getting time zone from WordPress options<\\/li>\\n<\\/ul>\\n<p>Version 1.7.0 \\u00a0(09\\/10\\/19)<\\/p>\\n<ul>\\n<li>Hide License Key on activation screen once license key is activated<\\/li>\\n<li>Trigger Bar from links containing hash<\\/li>\\n<li>Improved Divi Bars detection in posts<\\/li>\\n<li>Optimized Display location field<\\/li>\\n<\\/ul>\\n<p>Version 1.6.3 \\u00a0(08\\/09\\/19)<\\/p>\\n<ul>\\n<li>Fixed transparent header issue when a site\'s header is 100% transparent and the bar is active and overlap\'s the logo with the first section of the page<\\/li>\\n<li>Fixed issue with Divi\'s search icon glitching with Divi Bar<\\/li>\\n<\\/ul>\\n<p>Version 1.6.3 \\u00a0(08\\/09\\/19)<\\/p>\\n<ul>\\n<li>Fixed transparent header issue when a site\'s header is 100% transparent and the bar is active and overlap\'s the logo with the first section of the page<\\/li>\\n<li>Fixed issue with Divi\'s search icon glitching with Divi Bar<\\/li>\\n<\\/ul>\\n<p>Version 1.6.2 \\u00a0(08\\/06\\/19)<\\/p>\\n<ul>\\n<li>Fixes and adjustments when Divi Primary menu has a transparent background<\\/li>\\n<\\/ul>\\n<p>Version 1.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Improved Divi Bars ID search<\\/li>\\n<li>Made other core improvements<\\/li>\\n<\\/ul>\\n<p>Version 1.5.0 \\u00a0(01\\/30\\/19)<\\/p>\\n<ul>\\n<li>Fix incompatibility with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 1.4.9 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix issue Exit intent conflict between Divi Bars and Mega Pro posts<\\/li>\\n<\\/ul>\\n<p>Version 1.4.8 \\u00a0(12\\/19\\/18)<\\/p>\\n<ul>\\n<li>Improve server compatibility with date\\/time<\\/li>\\n<\\/ul>\\n<p>Version 1.4.7 \\u00a0(12\\/14\\/18)<\\/p>\\n<ul>\\n<li>Improved how timezone is handled which fixed recurring scheduling issue with day not selected, and start\\/end feature not saving dates<\\/li>\\n<\\/ul>\\n<p>Version 1.4.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 1.4.5 \\u00a0(10\\/31\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the Divi countdown module not opening<\\/li>\\n<li>Fixed an issue with Scheduling End Dates not allowing future dates to be saved<\\/li>\\n<\\/ul>\\n<p>Version 1.4.4 \\u00a0(09\\/11\\/18)<\\/p>\\n<ul>\\n<li>Fix Full Width Header Full Screen enable Glitch<\\/li>\\n<\\/ul>\\n<p>Version 1.4.3 \\u00a0(09\\/11\\/18)<\\/p>\\n<ul>\\n<li>Improve default params to support Pre ES2015<\\/li>\\n<\\/ul>\\n<p>Version 1.4.2 \\u00a0(08\\/28\\/18)<\\/p>\\n<ul>\\n<li>Add support for non-fixed navigation in Extra Theme<\\/li>\\n<\\/ul>\\n<p>Version 1.4.1 \\u00a0(08\\/23\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Fixed bug in display locations feature<\\/li>\\n<li>Added better support for Divi\\u2019s vertical navigation option<\\/li>\\n<li>Fixed compatibility issue with Divi Overlays<\\/li>\\n<li>Decreased requests to Divi Life licensing feature<\\/li>\\n<\\/ul>\\n<p>Version 1.3<\\/p>\\n<ul>\\n<li>Internal Version<\\/li>\\n<\\/ul>\\n<p>Version 1.2.1 \\u00a0(07\\/02\\/18)<\\/p>\\n<ul>\\n<li>Added a new feature for adding exceptions when selecting \\u2018All Pages\\u2019 from the page\\/post selection.<\\/li>\\n<li>Changed the way that posts\\/pages are queried when choosing page\\/post selection to fix timeout errors and other errors that occurred on sites with a large number of posts.<\\/li>\\n<li>Enhanced the way page\\/post selection is done in Divi Bars to simplify and avoid confusion. Now there is only one place to select page\\/post regardless of what trigger or feature is used.<\\/li>\\n<li>Fixed issue with Divi Bars breaking header when Fixed Navigation is turned off in Divi Theme Options.<\\/li>\\n<li>Fixed several other minor bugs throughout plugin.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2 \\u00a0(06\\/18\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with Divi Bars adding unnecessary padding to areas of the page when the Divi Bar was active.<\\/li>\\n<li>Fixed an issue with Divi Bars forcing a fixed navigation header, even when it was turned off in Divi Theme Options.<\\/li>\\n<li>Fixed an issue with the automatic updater licensing system.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1 \\u00a0(05\\/31\\/18)<\\/p>\\n<ul>\\n<li>Fixed issue with licensing causing other post types to redirect to Divi Bars settings page when license was not activated.<\\/li>\\n<li>Fixed Issue with Divi Animations to cause elements to not show on front end.<\\/li>\\n<li>Added Support for Divi\\u2019s Animations inside of Divi Bars.<\\/li>\\n<li>Fixed Issue with Transparent Menus breaking Divi Bars.<\\/li>\\n<li>Fixed Issue with Divi\\u2019s Project Post Type not showing in list of specific pages to trigger Divi Bar on.<\\/li>\\n<li>Fixed issue with more than 10 Divi Bars causing older Divi Bars to not display.<\\/li>\\n<\\/ul>\\n<p>Version 1.1 \\u00a0(04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added new API licensing system.<\\/li>\\n<li>Fixed issue with Divi Bars conflicting with Divi\\u2019s Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4 \\u00a0(02\\/08\\/18)<\\/p>\\n<ul>\\n<li>Fixed compatibility with the Extra Theme<\\/li>\\n<li>Fixed issue with Fixed Nav breaking when resizing browser window<\\/li>\\n<li>Fixed bug with scheduling feature not being able to be turned off once enabled.<\\/li>\\n<li>Added URL Triggers feature to trigger a Divi Bar from URL<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>internal version for testing<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2 (12\\/11\\/17)<\\/p>\\n<ul>\\n<li>Fixed the issue where Divi Bars would partially break 2 and 3 column layout section in certain circumstances.<\\/li>\\n<li>Fixed an incompatibility with the Elegant Themes Monarch plugin that would add the Monarch social sharing buttons inside of Divi Bars when Monarch social sharing button were set up for inline sharing and set to either \\u201cBelow Content\\u201d or \\u201cAbove and Below.\\u201d<\\/li>\\n<li>Fixed an issue with Divi Bars not displaying correctly on archive pages, category pages, 404 pages, etc.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>internal version for testing<\\/li>\\n<\\/ul>\\n<p>Version 1.0 (11\\/21\\/17)<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Bars product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-bars\\/\\\">https:\\/\\/divilife.com\\/product\\/divi-bars\\/<\\/a><\\/p>\\n<p>&nbsp;<\\/p>\\n\"]}\";}','no'),(5927,'et_pb_contact_form_0e4dd077e75ef0d1bfc9782a7c778350','off','yes'),(5949,'et_pb_contact_form_5a5e3c0ff5f608778721a89cc7d4a451','off','yes'),(5955,'et_pb_contact_form_c3eaeeb3b782088ecbee3fec54cfd55f','off','yes'),(5970,'et_pb_contact_form_0bb205d96081371711877c074bb9efe8','off','yes'),(5978,'et_pb_contact_form_c308da79218f09be90337757bda1fc49','off','yes'),(9081,'et_pb_contact_form_6c8e895b28ebfca9116e7cd2b650bcd0','off','yes'),(2217,'itsec-storage','a:6:{s:6:\"global\";a:34:{s:11:\"write_files\";b:1;s:10:\"nginx_file\";s:0:\"\";s:14:\"lockout_period\";i:15;s:16:\"blacklist_period\";i:7;s:9:\"blacklist\";b:1;s:15:\"blacklist_count\";i:3;s:15:\"lockout_message\";s:5:\"error\";s:20:\"user_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:25:\"community_lockout_message\";s:77:\"Your IP address has been flagged as a threat by the iThemes Security network.\";s:19:\"automatic_temp_auth\";b:1;s:18:\"lockout_white_list\";a:0:{}s:8:\"log_type\";s:8:\"database\";s:12:\"log_rotation\";i:60;s:17:\"file_log_rotation\";i:180;s:12:\"log_location\";s:73:\"/home/flapst5/flaphotography.com/wp-content/uploads/ithemes-security/logs\";s:5:\"proxy\";s:9:\"automatic\";s:12:\"proxy_header\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"allow_tracking\";b:0;s:14:\"hide_admin_bar\";b:0;s:16:\"show_error_codes\";b:0;s:19:\"enable_grade_report\";b:0;s:5:\"build\";i:4124;s:13:\"initial_build\";i:4124;s:20:\"activation_timestamp\";i:1631582058;s:11:\"cron_status\";i:1;s:8:\"use_cron\";b:1;s:14:\"cron_test_time\";i:1670648854;s:10:\"server_ips\";a:3:{i:0;s:15:\"199.250.205.216\";i:1;s:15:\"199.250.205.212\";i:2;s:13:\"104.247.76.75\";}s:24:\"licensed_hostname_prompt\";b:0;s:16:\"onboard_complete\";b:1;s:13:\"enabled_tools\";a:0:{}s:18:\"enable_remote_help\";b:0;s:13:\"feature_flags\";a:0:{}s:12:\"manage_group\";a:1:{i:0;s:36:\"12fe17a3-25a3-458e-bd40-96540b2935d0\";}}s:10:\"__extended\";a:0:{}s:19:\"notification-center\";a:8:{s:9:\"last_sent\";a:1:{s:6:\"digest\";i:1670636240;}s:9:\"resend_at\";a:1:{s:6:\"digest\";i:1667849185;}s:4:\"data\";a:1:{s:6:\"digest\";a:0:{}}s:15:\"last_mail_error\";s:35:\"SMTP Error: Could not authenticate.\";s:10:\"from_email\";s:0:\"\";s:18:\"default_recipients\";a:1:{s:9:\"user_list\";a:1:{i:0;i:1;}}s:13:\"notifications\";a:3:{s:6:\"digest\";a:5:{s:8:\"schedule\";s:5:\"daily\";s:7:\"enabled\";b:1;s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}s:14:\"recipient_type\";s:7:\"default\";s:7:\"subject\";N;}s:7:\"lockout\";a:4:{s:7:\"enabled\";b:1;s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}s:14:\"recipient_type\";s:7:\"default\";s:7:\"subject\";N;}s:6:\"backup\";a:2:{s:10:\"email_list\";a:1:{i:0;s:23:\"flalogsta@flapstart.com\";}s:7:\"subject\";N;}}s:12:\"admin_emails\";a:0:{}}s:9:\"dashboard\";a:2:{s:8:\"migrated\";b:0;s:5:\"group\";a:1:{i:0;s:36:\"12fe17a3-25a3-458e-bd40-96540b2935d0\";}}s:21:\"password-requirements\";a:2:{s:20:\"enabled_requirements\";a:2:{s:8:\"strength\";b:0;s:4:\"hibp\";b:0;}s:20:\"requirement_settings\";a:2:{s:8:\"strength\";a:1:{s:5:\"group\";a:6:{i:0;s:36:\"12fe17a3-25a3-458e-bd40-96540b2935d0\";i:1;s:36:\"1d55710b-e91f-4fd0-a822-8396dfa98fa1\";i:2;s:36:\"d78ef16f-1f7c-4094-b8ac-d09c2e867231\";i:3;s:36:\"36a6aa31-8a3a-4991-86d3-db0470ca876b\";i:4;s:36:\"3a4e04b0-afcd-4518-a887-05ce462e7e2d\";i:5;s:14:\"everybody-else\";}}s:4:\"hibp\";a:1:{s:5:\"group\";a:6:{i:0;s:36:\"12fe17a3-25a3-458e-bd40-96540b2935d0\";i:1;s:36:\"1d55710b-e91f-4fd0-a822-8396dfa98fa1\";i:2;s:36:\"d78ef16f-1f7c-4094-b8ac-d09c2e867231\";i:3;s:36:\"36a6aa31-8a3a-4991-86d3-db0470ca876b\";i:4;s:36:\"3a4e04b0-afcd-4518-a887-05ce462e7e2d\";i:5;s:14:\"everybody-else\";}}}}s:11:\"brute-force\";a:4:{s:14:\"auto_ban_admin\";b:0;s:17:\"max_attempts_host\";i:5;s:17:\"max_attempts_user\";i:5;s:12:\"check_period\";i:5;}}','yes'),(2225,'itsec_temp_whitelist_ip','a:1:{s:14:\"142.114.98.208\";i:1668363066;}','no'),(9608,'et_pb_contact_form_02c6d40d2ad0b75a0fe56183b8152810','off','yes'),(9543,'action_scheduler_migration_status','complete','yes'),(9597,'et_pb_contact_form_bd2be70148051b2998c8f08639f053c0','off','yes'),(1024,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(168,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(169,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-fd62cb44897ae037139a33ef6692d669\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";s:19:\"bucket_access_style\";s:10:\"path_style\";}}}','yes'),(170,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-db9781a66a88f52f13bb89ac9ed442da\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(171,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-d7b2a0ce086bb9f4aad35a586407c397\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(172,'updraftplus-addons_siteid','b698b54813f67e875e06cdc77bbc3583','no'),(173,'updraft_backup_history','a:7:{i:1670543131;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-plugins.zip\";}s:12:\"plugins-size\";i:36756026;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-themes.zip\";}s:11:\"themes-size\";i:15651794;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-uploads.zip\";i:1;s:65:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-others.zip\";}s:11:\"others-size\";i:2490208;s:2:\"db\";s:58:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-db.gz\";s:7:\"db-size\";i:2625334;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"3135686dddb1cd518be311e2754c4225bfe3415b\";s:7:\"themes0\";s:40:\"433366c1fe5797c08e2edb78b7be56d154815190\";s:8:\"uploads0\";s:40:\"44e3be0c5a7f4877c978d24185ac86d951f5a75f\";s:8:\"uploads1\";s:40:\"71d7b8b462d128026468cd396cf39533d9a17a6a\";s:7:\"others0\";s:40:\"c9d1a0ec415a32fb5e43f7d91141d44fe7192148\";s:3:\"db0\";s:40:\"bafa3f0f96fdfa8037d5b007fbb8fe7204714850\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"977c8715f2b0084d765b2f4ac21f551c115de9fb694e34944fa6b2b5bbddb542\";s:7:\"themes0\";s:64:\"d8048f6a8e43144d842a8fc0d82579eff3f3a367fae628bbb76dbf74356b6e9c\";s:8:\"uploads0\";s:64:\"c30a36c486e77ee90a5d8585afc7283098c821675b66016442a2be6c1fc5819b\";s:8:\"uploads1\";s:64:\"bc01e0e96b8135a3bdc5d24c87e0d998a684c7cfae115377df8515652e2870b2\";s:7:\"others0\";s:64:\"5c74b3ff9d8e67c9bc1e2cf2a806bb3836c9f060431be546f9f76cbb24d444ef\";s:3:\"db0\";s:64:\"b2d03626bbce0a1d70ecab36d1702f3b832c6a99c3f181cbcdaa40d5fd841ec6\";}}s:5:\"nonce\";s:12:\"711a46749f3f\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1670543132;s:6:\"themes\";i:1670543153;s:7:\"uploads\";i:1670543164;s:6:\"others\";i:1670543299;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1669939476;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-plugins.zip\";}s:12:\"plugins-size\";i:36756026;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-themes.zip\";}s:11:\"themes-size\";i:15651794;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-uploads.zip\";i:1;s:65:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-others.zip\";}s:11:\"others-size\";i:1625338;s:2:\"db\";s:58:\"backup_2022-12-02-0004_FLAP_PHOTOGRAPHY_4c7c358202e8-db.gz\";s:7:\"db-size\";i:2620010;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"83a746a37edfeac1bb28e5c5a6dc7f61850d477f\";s:7:\"themes0\";s:40:\"1ca52d540ca8514a92ca5c7b248e3cd14513efef\";s:8:\"uploads0\";s:40:\"fa8b946bf719c2b662db0b90be780ce24f3d7da2\";s:8:\"uploads1\";s:40:\"db6263fc49f19a676c791fad9da536af81c9a75b\";s:7:\"others0\";s:40:\"c34bac5b3c61bf536f26c9e9ae902cca0623aa72\";s:3:\"db0\";s:40:\"bad8ece51c55c359814966313e3abde7c9004a01\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"6496188ae6e4306a3748627a886dd5e8ca62197cb195cd65575d6881d3d2b5ba\";s:7:\"themes0\";s:64:\"53aaf7c0df0d97b699e4867023220b3ad93e643a06087fb3d7a42103d7b64a20\";s:8:\"uploads0\";s:64:\"f13c96874e9c5ed5a42d21ae6c319a3fe031fd4c933ba67fcc29b9c7f46c7e2e\";s:8:\"uploads1\";s:64:\"796a24d3070b9490ce2032842e6871c62619c94b2184a577dcbeff76fa4795bc\";s:7:\"others0\";s:64:\"decaa2cb6af5f0de2258278bbe1c6a6ef10c48e49f62faacd22f5bcf1305756d\";s:3:\"db0\";s:64:\"29eff5119f0b6dd7f5e04065c5a587f4d2b342a2e146f31572216cc432a7b783\";}}s:5:\"nonce\";s:12:\"4c7c358202e8\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1669939476;s:6:\"themes\";i:1669939493;s:7:\"uploads\";i:1669939503;s:6:\"others\";i:1669939646;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1669334662;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-plugins.zip\";}s:12:\"plugins-size\";i:36756026;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-themes.zip\";}s:11:\"themes-size\";i:15651155;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-uploads.zip\";i:1;s:65:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-others.zip\";}s:11:\"others-size\";i:2453475;s:2:\"db\";s:58:\"backup_2022-11-25-0004_FLAP_PHOTOGRAPHY_b5d544e551a7-db.gz\";s:7:\"db-size\";i:2621534;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"cbac0a2ed8f43802eaff9a3d254c8c94aacd23ed\";s:7:\"themes0\";s:40:\"7754ef5d2ecf733a9bf3bd2e0959818aa42584b1\";s:8:\"uploads0\";s:40:\"667ad50be1efee6f3302941d4162771b891d5001\";s:8:\"uploads1\";s:40:\"b0870b99ba04a86e2f433e5e590c2d5d0fa98ade\";s:7:\"others0\";s:40:\"0e8266a3331b9c4eb2e7989e2e3b24982699942a\";s:3:\"db0\";s:40:\"8c9331be0c9bb94cf0ffdf76dc1c185e922a2371\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"177ed0eaa02163e97c2256bfae2f7f37eb3193919c9672841482c02289ee5b58\";s:7:\"themes0\";s:64:\"ed41dabd719cfc6d6b120a9f22497db140aba7c142eda5888ab8cb058866788f\";s:8:\"uploads0\";s:64:\"76ece61036a8137302ae2cfadee9b898fba515a99f0c90b8a245257969393eae\";s:8:\"uploads1\";s:64:\"8704ae176703cb072512bab69ab19cf25d3b13e34b5e90f404bad326dcf39b66\";s:7:\"others0\";s:64:\"051be53479b2bec79147517400f364be8be72cc61aa73bfc143a68484faf127a\";s:3:\"db0\";s:64:\"e4ba80adcc915995f953abfdd7770d1b881df4ab14f4bc0b0da9396b2dd27620\";}}s:5:\"nonce\";s:12:\"b5d544e551a7\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1669334662;s:6:\"themes\";i:1669334682;s:7:\"uploads\";i:1669334691;s:6:\"others\";i:1669334823;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1668729457;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-plugins.zip\";}s:12:\"plugins-size\";i:36325249;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-themes.zip\";}s:11:\"themes-size\";i:15648539;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-uploads.zip\";i:1;s:65:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-others.zip\";}s:11:\"others-size\";i:2482139;s:2:\"db\";s:58:\"backup_2022-11-17-2357_FLAP_PHOTOGRAPHY_2cef8595e3df-db.gz\";s:7:\"db-size\";i:2624269;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"323db0f6694f1c164ec175c723988b435377674b\";s:7:\"themes0\";s:40:\"ad609d0ad4d3ea7896c007e84eb6004828fa59d0\";s:8:\"uploads0\";s:40:\"f391c24ba999a86590663216195654db6af46ea4\";s:8:\"uploads1\";s:40:\"473800e46be20493c91d4a2e1084970963fb6122\";s:7:\"others0\";s:40:\"8f46f5c0cc1ad224d60d2bcd7c38e9ad02618f15\";s:3:\"db0\";s:40:\"fd188768ddee5b90b0484bf134f9ba322d044173\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"227f998ec985c0214aceebd064a98dd6755e4e6aacf508359eb7c88fa0a83862\";s:7:\"themes0\";s:64:\"2a6102e6a6707a900702742299a1cf74de75030c11ede8213468283e866738e2\";s:8:\"uploads0\";s:64:\"4aed10d184cb43fd41c547facefe311d71dbda7c0948b57613ea57d62a25d6fc\";s:8:\"uploads1\";s:64:\"dc6e872b6d352e7292f91cbe05d867acb6c9bee76ddad1057e0659f62ca77981\";s:7:\"others0\";s:64:\"9b147da849b2bb09f3e2ea568fa8a0de88312ea57ebd68df8d2e0b5f974eb898\";s:3:\"db0\";s:64:\"0e4b70d772bea691a3875d8ef60060ca5d6d2f881bce40119342130934b6f502\";}}s:5:\"nonce\";s:12:\"2cef8595e3df\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1668729457;s:6:\"themes\";i:1668729475;s:7:\"uploads\";i:1668729485;s:6:\"others\";i:1668729627;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1668125090;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-plugins.zip\";}s:12:\"plugins-size\";i:36325249;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-themes.zip\";}s:11:\"themes-size\";i:15648539;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-uploads.zip\";i:1;s:65:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-others.zip\";}s:11:\"others-size\";i:1592766;s:2:\"db\";s:58:\"backup_2022-11-11-0004_FLAP_PHOTOGRAPHY_06b9c00d25f5-db.gz\";s:7:\"db-size\";i:2617023;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"838263b66cd81066fb4f2cf69218f9e5d0b462ed\";s:7:\"themes0\";s:40:\"61dd3b3b1ff3429d050692c87c9daf44f55c25a6\";s:8:\"uploads0\";s:40:\"40a778882ed95d4bdeb49d0edfe9ebd3f89f0562\";s:8:\"uploads1\";s:40:\"9c9a9af51f83b432db0e4376c48bed3bff0e65f7\";s:7:\"others0\";s:40:\"d46cfd73d8da1c706d08b6aebfd61fed63aa7848\";s:3:\"db0\";s:40:\"416f06f03c17fdcb3961ba486ab0798549aecd76\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"7b451c6faf7646ecc536bc607bad43d1d6628391479ea9c79a40c067cf3c352b\";s:7:\"themes0\";s:64:\"cdd070f89e0b387929e75cb02e213ed8c8048898a957971c018fb98e8e34d15a\";s:8:\"uploads0\";s:64:\"de3f7ed76591ffbec4de8aa6048855a50e2f6ebb75ad080c425097366759b8fe\";s:8:\"uploads1\";s:64:\"53e96695d13dd6660abdeec722db05628f0c5bf55e398f3f75637f23c2d7d315\";s:7:\"others0\";s:64:\"6c3999c1bb3e6e96fa57c20aa6799d6375cc0790815ce64e79e903e31d31b7d5\";s:3:\"db0\";s:64:\"0c2bb1d426e787ce2f365692c1c60308a776919509bc02624a9640446c41ebd3\";}}s:5:\"nonce\";s:12:\"06b9c00d25f5\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1668125091;s:6:\"themes\";i:1668125111;s:7:\"uploads\";i:1668125120;s:6:\"others\";i:1668125266;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1667520722;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-plugins.zip\";}s:12:\"plugins-size\";i:37560082;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-themes.zip\";}s:11:\"themes-size\";i:15423160;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-uploads.zip\";i:1;s:65:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:333998223;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-others.zip\";}s:11:\"others-size\";i:2526704;s:2:\"db\";s:58:\"backup_2022-11-04-0012_FLAP_PHOTOGRAPHY_2e8edecf0919-db.gz\";s:7:\"db-size\";i:2593585;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"1f7c1a433d5dd015dc47779b45e6990350fe019a\";s:7:\"themes0\";s:40:\"c3ac3f07ae4c2deec87f0fc2c8bda6a7a15343f3\";s:8:\"uploads0\";s:40:\"ce3ac8d13ff91a943e9ade41783c90bf8ec1c6d3\";s:8:\"uploads1\";s:40:\"897ea28e7f201f4b38a0e43e259427122204991f\";s:7:\"others0\";s:40:\"da9fce41f28abf22f7efc9930158550f235488a1\";s:3:\"db0\";s:40:\"97eac3d7f3df0cdd1f1836b938958c7d78d36e89\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"67cf3c73d4282203dd8a84e87d86b785051cc1b953dc1a593a82b823d8da2c6a\";s:7:\"themes0\";s:64:\"7e9043faa7e2bb20c3acbab7302b7ba4fbbc463f9a44f5a361d74009e355c953\";s:8:\"uploads0\";s:64:\"004a49e48f727f4d7538697a54a1c651cddb7eb6f27b93195e1e4289964a0a6d\";s:8:\"uploads1\";s:64:\"7d647c069e1bd58ac7c34fde1a5e7531be4bff6ec4010006fd7563dd5975abdb\";s:7:\"others0\";s:64:\"8c2bdbfa881128e85a7f8bedf17d4737acf3d2790cf6c9cf370bda234ed1e77b\";s:3:\"db0\";s:64:\"660b28114ebbe471c8fd87429d69ca499811de7a9735f14006439531aaac877a\";}}s:5:\"nonce\";s:12:\"2e8edecf0919\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1667520722;s:6:\"themes\";i:1667520780;s:7:\"uploads\";i:1667520792;s:6:\"others\";i:1667521172;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}i:1666921322;a:20:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-plugins.zip\";}s:12:\"plugins-size\";i:37560082;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-themes.zip\";}s:11:\"themes-size\";i:14128865;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-uploads.zip\";i:1;s:65:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:333998223;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-others.zip\";}s:11:\"others-size\";i:2530189;s:2:\"db\";s:58:\"backup_2022-10-28-0142_FLAP_PHOTOGRAPHY_0c70a52e0b32-db.gz\";s:7:\"db-size\";i:2592916;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"1311b00f758f6295b349c2740d9ada15e146b403\";s:7:\"themes0\";s:40:\"12da919d9709d758947644d93bbd4affc742c339\";s:8:\"uploads0\";s:40:\"dd20c28709b72e9a33b4dca92d82fc4a7ced9fcd\";s:8:\"uploads1\";s:40:\"ad80b355a9f1f1c91ba0a974c943572d4fb103ac\";s:7:\"others0\";s:40:\"d60fad423e927917bda2622ce32ed2185e134c4b\";s:3:\"db0\";s:40:\"d696198e30ade350c6c5593c77c0a0dc7f8b5172\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"95121375574718d86d91b2d6ab06be3901507e883c0f6f78306020c4bb1f64e0\";s:7:\"themes0\";s:64:\"4e96f8ba1ec9b1372e73f2ac5cc79b769041f7629ab0b57bdc7de498fa75623e\";s:8:\"uploads0\";s:64:\"63b9ffaafeb6bd9516df2793ce730d519e52872503a64be745e0f2b4b440148e\";s:8:\"uploads1\";s:64:\"41e1d249efee656e298ff1186656aecddd161b9ced53698ac0f9d2a86435f3eb\";s:7:\"others0\";s:64:\"b2b5da45fdba97571a4099c2ab8a0bc1d45ecee51df42fcb44383096ed9e2201\";s:3:\"db0\";s:64:\"3a3d87a007993aae6a9c98efcc2356a74041b7f78a8774b84bac94159d6822e0\";}}s:5:\"nonce\";s:12:\"0c70a52e0b32\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:20:\"service_instance_ids\";a:1:{s:7:\"dropbox\";a:1:{i:0;s:34:\"s-5bbdfeb0dae093a23f7f8e7726a917b3\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1666921322;s:6:\"themes\";i:1666921368;s:7:\"uploads\";i:1666921378;s:6:\"others\";i:1666921763;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}}','no'),(231,'dsxmlrpc-settings','a:15:{s:17:\"dsxmlrpc-switcher\";b:0;s:11:\"xmlrpc-slug\";s:0:\"\";s:16:\"jetpack-switcher\";b:1;s:16:\"disabled-methods\";a:4:{i:0;s:13:\"pingback.ping\";i:1;s:10:\"x-pingback\";i:2;s:20:\"mt.getTrackbackPings\";i:3;s:32:\"pingback.extensions.getPingbacks\";}s:14:\"White-list-IPs\";s:0:\"\";s:14:\"Black-list-IPs\";s:0:\"\";s:13:\"json-rest-api\";b:0;s:13:\"remove-wp-ver\";b:1;s:19:\"disable-code-editor\";b:1;s:11:\"disable-wlw\";b:1;s:14:\"slow-heartbeat\";b:1;s:11:\"hotlink-fix\";b:1;s:13:\"remove-emojis\";b:1;s:10:\"remove-rss\";b:1;s:14:\"disable-oembed\";b:0;}','yes'),(471,'wp_mail_smtp_lite_sent_email_counter','208','yes'),(662,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":5,\"critical\":0}','yes'),(187,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(188,'et_support_center_installed','true','yes'),(189,'et_images_temp_folder','/home/flapst5/flaphotography.com/wp-content/uploads/et_temp','yes'),(190,'et_schedule_clean_images_last_time','1670162677','yes'),(191,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(377,'wpseo_sitemap_attachment_cache_validator','AjvQ','no'),(396,'category_children','a:0:{}','yes'),(192,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(193,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(194,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(195,'et_support_center_setup_done','processed','yes'),(196,'current_theme','Divi','yes'),(197,'theme_switched','','yes'),(198,'et_pb_cache_notice','a:1:{s:5:\"4.9.7\";s:6:\"ignore\";}','yes'),(199,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(202,'et_pb_contact_form_ce319d7318fae32cb4bc4141c371b26e','off','yes'),(8291,'wpseo_sitemap_500_cache_validator','2Sto','no'),(14048,'et_pb_contact_form_5e0dcdd2bacfbef121adb59377ee5a12','off','yes'),(34629,'et_pb_contact_form_3aea1757a27a84848a1b8fa55da9df14','off','yes'),(34628,'et_pb_contact_form_d5239bcc045bce2dfd83c23116976760','off','yes'),(34617,'et_pb_contact_form_ba7f38cdfd0576693a845e2470648ff5','off','yes'),(34616,'et_pb_contact_form_a6c6e9fb31c8de2aafc727c0ef96e738','off','yes'),(23347,'updraft_lock_4db2bc68253d','1648165976','no'),(21633,'updraft_lock_f3a49b21abbf','0','no'),(24830,'updraft_lock_ab2ce87ac6f0','0','no'),(8915,'et_pb_contact_form_49f94547657b66855a7a7625ed7dbdfa','off','yes'),(8916,'et_pb_contact_form_d0cea94c77119f6738fce347bcade42d','off','yes'),(10396,'et_pb_contact_form_eda41fe8cb5503300bfbe3e7c7317fa5','off','yes'),(7150,'fm_key','FqzuPQXgc1ZjYrmIo75wiyRU6','yes'),(228,'dcs_settings','a:1:{s:14:\"dcs_redirectto\";s:2:\"79\";}','yes'),(279,'wp-smush-settings','a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;}','yes'),(236,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"19.4\";}','yes'),(237,'wpseo','a:87:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"19.4\";s:16:\"previous_version\";s:4:\"19.3\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1631239875;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:26:\"https://flaphotography.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:10:{s:15:\"layout_category\";s:15:\"layout_category\";s:10:\"layout_tag\";s:10:\"layout_tag\";s:11:\"layout_pack\";s:11:\"layout_pack\";s:11:\"layout_type\";s:11:\"layout_type\";s:12:\"module_width\";s:12:\"module_width\";s:5:\"scope\";s:5:\"scope\";s:15:\"et_tb_item_type\";s:15:\"et_tb_item_type\";s:16:\"project_category\";s:16:\"project_category\";s:11:\"project_tag\";s:11:\"project_tag\";s:20:\"et_code_snippet_type\";s:20:\"et_code_snippet_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;}','yes'),(238,'wpseo_titles','a:188:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:8:\"sc-ndash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:16:\"FLAP PHOTOGRAPHY\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:79:\"https://flaphotography.com/wp-content/uploads/2021/10/FLAP-PHOTO-LOGO-600PX.png\";s:12:\"company_name\";s:27:\"FlapPhotography - FlapStart\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:1;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:13:\"title-project\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-project\";s:0:\"\";s:15:\"noindex-project\";b:1;s:26:\"display-metabox-pt-project\";b:1;s:26:\"post_types-project-maintax\";i:0;s:24:\"schema-page-type-project\";s:7:\"WebPage\";s:27:\"schema-article-type-project\";s:4:\"None\";s:20:\"social-title-project\";s:9:\"%%title%%\";s:26:\"social-description-project\";s:0:\"\";s:24:\"social-image-url-project\";s:0:\"\";s:23:\"social-image-id-project\";i:0;s:23:\"title-ptarchive-project\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-project\";s:0:\"\";s:25:\"bctitle-ptarchive-project\";s:0:\"\";s:25:\"noindex-ptarchive-project\";b:0;s:30:\"social-title-ptarchive-project\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-project\";s:0:\"\";s:34:\"social-image-url-ptarchive-project\";s:0:\"\";s:33:\"social-image-id-ptarchive-project\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:25:\"title-tax-layout_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-layout_category\";s:0:\"\";s:35:\"display-metabox-tax-layout_category\";b:1;s:27:\"noindex-tax-layout_category\";b:0;s:32:\"social-title-tax-layout_category\";s:23:\"%%term_title%% Archives\";s:38:\"social-description-tax-layout_category\";s:0:\"\";s:36:\"social-image-url-tax-layout_category\";s:0:\"\";s:35:\"social-image-id-tax-layout_category\";i:0;s:33:\"taxonomy-layout_category-ptparent\";i:0;s:21:\"title-tax-layout_pack\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-layout_pack\";s:0:\"\";s:31:\"display-metabox-tax-layout_pack\";b:1;s:23:\"noindex-tax-layout_pack\";b:0;s:28:\"social-title-tax-layout_pack\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-layout_pack\";s:0:\"\";s:32:\"social-image-url-tax-layout_pack\";s:0:\"\";s:31:\"social-image-id-tax-layout_pack\";i:0;s:29:\"taxonomy-layout_pack-ptparent\";i:0;s:21:\"title-tax-layout_type\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-layout_type\";s:0:\"\";s:31:\"display-metabox-tax-layout_type\";b:1;s:23:\"noindex-tax-layout_type\";b:0;s:28:\"social-title-tax-layout_type\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-layout_type\";s:0:\"\";s:32:\"social-image-url-tax-layout_type\";s:0:\"\";s:31:\"social-image-id-tax-layout_type\";i:0;s:29:\"taxonomy-layout_type-ptparent\";i:0;s:15:\"title-tax-scope\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-tax-scope\";s:0:\"\";s:25:\"display-metabox-tax-scope\";b:1;s:17:\"noindex-tax-scope\";b:0;s:22:\"social-title-tax-scope\";s:23:\"%%term_title%% Archives\";s:28:\"social-description-tax-scope\";s:0:\"\";s:26:\"social-image-url-tax-scope\";s:0:\"\";s:25:\"social-image-id-tax-scope\";i:0;s:23:\"taxonomy-scope-ptparent\";i:0;s:22:\"title-tax-module_width\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-module_width\";s:0:\"\";s:32:\"display-metabox-tax-module_width\";b:1;s:24:\"noindex-tax-module_width\";b:0;s:29:\"social-title-tax-module_width\";s:23:\"%%term_title%% Archives\";s:35:\"social-description-tax-module_width\";s:0:\"\";s:33:\"social-image-url-tax-module_width\";s:0:\"\";s:32:\"social-image-id-tax-module_width\";i:0;s:30:\"taxonomy-module_width-ptparent\";i:0;s:26:\"title-tax-project_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-project_category\";s:0:\"\";s:36:\"display-metabox-tax-project_category\";b:1;s:28:\"noindex-tax-project_category\";b:0;s:33:\"social-title-tax-project_category\";s:23:\"%%term_title%% Archives\";s:39:\"social-description-tax-project_category\";s:0:\"\";s:37:\"social-image-url-tax-project_category\";s:0:\"\";s:36:\"social-image-id-tax-project_category\";i:0;s:34:\"taxonomy-project_category-ptparent\";i:0;s:21:\"title-tax-project_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-project_tag\";s:0:\"\";s:31:\"display-metabox-tax-project_tag\";b:1;s:23:\"noindex-tax-project_tag\";b:0;s:28:\"social-title-tax-project_tag\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-project_tag\";s:0:\"\";s:32:\"social-image-url-tax-project_tag\";s:0:\"\";s:31:\"social-image-id-tax-project_tag\";i:0;s:29:\"taxonomy-project_tag-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:796;s:17:\"company_logo_meta\";a:9:{s:5:\"width\";i:600;s:6:\"height\";i:81;s:3:\"url\";s:79:\"https://flaphotography.com/wp-content/uploads/2021/10/FLAP-PHOTO-LOGO-600PX.png\";s:4:\"path\";s:85:\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/FLAP-PHOTO-LOGO-600PX.png\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:796;s:3:\"alt\";s:0:\"\";s:6:\"pixels\";i:48600;s:4:\"type\";s:9:\"image/png\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(239,'wpseo_social','a:19:{s:13:\"facebook_site\";s:34:\"https://www.facebook.com/FlapStart\";s:13:\"instagram_url\";s:51:\"https://www.instagram.com/flaphotography_flapstart/\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:1:{i:0;s:51:\"https://www.instagram.com/flaphotography_flapstart/\";}}','yes'),(360,'wpseo_sitemap_cache_validator_global','3GeoT','no'),(257,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1648783270;}','yes'),(949,'wpseo_sitemap_scope_cache_validator','6bUdP','no'),(950,'wpseo_sitemap_layout_type_cache_validator','6bUdL','no'),(951,'wpseo_sitemap_module_width_cache_validator','6bUdN','no'),(1144,'auto_update_themes','a:1:{i:0;s:4:\"Divi\";}','no'),(2396,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:33;i:3;i:34;i:6;i:35;i:2;i:36;i:6;i:37;i:1;i:38;i:2;i:39;i:1;i:40;i:1;i:41;i:1;i:45;i:5;i:46;i:1;i:48;i:1;}','yes'),(1151,'et_support_site_id','jCYmdo9DEb)XQ-WJe2#S','yes'),(1696,'et_pb_contact_form_168c44423c9c14895442ff7c0746bf57','off','yes'),(1656,'et_pb_contact_form_74a1d0a8e5bea9b9d6975a0c5073233c','off','yes'),(1689,'et_pb_contact_form_34858c0723f5e3f09e411e208c1da42c','off','yes'),(1676,'et_pb_contact_form_ad6565af8cbfb34105e2bba9ec139374','off','yes'),(1438,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(273,'WPLANG','','yes'),(274,'new_admin_email','flalogsta@flapstart.com','yes'),(275,'whl_page','defotocom','yes'),(276,'whl_redirect_admin','home','yes'),(280,'wp-smush-install-type','existing','no'),(281,'wp-smush-version','3.12.4','no'),(300,'action_scheduler_lock_async-request-runner','1670640843','yes'),(288,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1631268224;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1631268224;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1667953836;}}s:4:\"done\";a:0:{}}','no'),(289,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1631268224;}}','no'),(290,'action_scheduler_hybrid_store_demarkation','85','yes'),(291,'schema-ActionScheduler_StoreSchema','6.0.1645104676','yes'),(292,'schema-ActionScheduler_LoggerSchema','3.0.1645104676','yes'),(293,'wp_mail_smtp_initial_version','2.9.0','no'),(294,'wp_mail_smtp_version','2.9.0','no'),(295,'wp_mail_smtp','a:11:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:18:\"info@flapstart.com\";s:9:\"from_name\";s:21:\"FLAP PHOTOGRAPHY SITE\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:18:\"mail.flapstart.com\";s:10:\"encryption\";s:3:\"ssl\";s:4:\"port\";i:465;s:4:\"user\";s:18:\"info@flapstart.com\";s:4:\"pass\";s:72:\"DZcCUmKJCVtMJa6Eu/+IuMHbskh3rk3q40wCbydMYgKu92xWatFfccWMVgAJJtZBumDZuw==\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}}','no'),(296,'wp_mail_smtp_activated_time','1631268240','no'),(297,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1631268240;}','yes'),(309,'wp_mail_smtp_activation_prevent_redirect','1','yes'),(305,'wp_mail_smtp_migration_version','5','yes'),(310,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1631268250;s:9:\"dismissed\";b:0;}','yes'),(319,'wp_mail_smtp_debug','a:0:{}','no'),(320,'wp_mail_smtp_mail_key','aEqCgO0GU9A865+CPgJG59LIAf+N44AgblAqd/NKnAQ=','yes'),(328,'updraft_retain_extrarules','a:0:{}','yes'),(321,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1668276894;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:33:\"Instant Alerts for Email Failures\";s:7:\"content\";s:269:\"Your website emails are critical. If they stop working, wouldn\'t you want to know? With WP Mail SMTP Pro, you can get immediate alerts if there’s a problem sending emails from your site. Get notified via email, SMS, Slack, or webhooks - whatever works best for you!\r\n\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:29;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:176:\"https://wpmailsmtp.com/introducing-wp-mail-smtp-3-5-alert-notifications-are-here/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:142:\"https://wpmailsmtp.com/wpmailsmtp-lite-upgrade/?utm_source=WordPress&utm_medium=liteplugin&utm_campaign=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:14:\"Upgrade to Pro\";}}s:5:\"start\";s:19:\"2022-08-29 00:00:00\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(329,'updraft_email','','yes'),(330,'updraft_report_warningsonly','a:0:{}','yes'),(331,'updraft_report_wholebackup','a:0:{}','yes'),(332,'updraft_extradbs','a:0:{}','yes'),(333,'updraft_include_more_path','a:0:{}','yes'),(334,'updraft_interval','weekly','yes'),(335,'updraft_retain','7','yes'),(336,'updraft_interval_database','weekly','yes'),(337,'updraft_retain_db','7','yes'),(338,'updraft_service','dropbox','yes'),(342,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(343,'updraft_include_others','1','yes'),(344,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(345,'updraft_split_every','400','yes'),(346,'updraft_delete_local','1','yes'),(347,'updraft_dir','updraft','yes'),(348,'updraft_debug_mode','0','yes'),(349,'updraft_ssl_useservercerts','0','yes'),(350,'updraft_ssl_disableverify','0','yes'),(351,'updraft_ssl_nossl','0','yes'),(352,'updraft_lastmessage','Deleting old temporary file: backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-uploads.zip.list.tmp (Dec 09 15:04:40)','yes'),(542,'updraftplus_unlocked_fd','1','no'),(543,'updraftplus_last_lock_time_fd','2022-12-08 23:45:31','no'),(544,'updraftplus_semaphore_fd','0','no'),(545,'updraft_last_scheduled_fd','1670543131','yes'),(479,'wp_mail_smtp_debug_events_db_version','1','yes'),(547,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1670543131;s:11:\"backup_time\";i:1670543131;s:12:\"backup_array\";a:12:{s:7:\"plugins\";a:1:{i:0;s:64:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-plugins.zip\";}s:12:\"plugins-size\";i:36756026;s:6:\"themes\";a:1:{i:0;s:63:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-themes.zip\";}s:11:\"themes-size\";i:15651794;s:7:\"uploads\";a:2:{i:0;s:64:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-uploads.zip\";i:1;s:65:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-uploads2.zip\";}s:12:\"uploads-size\";N;s:13:\"uploads1-size\";i:330632978;s:6:\"others\";a:1:{i:0;s:63:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-others.zip\";}s:11:\"others-size\";i:2490208;s:2:\"db\";s:58:\"backup_2022-12-08-2345_FLAP_PHOTOGRAPHY_711a46749f3f-db.gz\";s:7:\"db-size\";i:2625334;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:6:{s:8:\"plugins0\";s:40:\"3135686dddb1cd518be311e2754c4225bfe3415b\";s:7:\"themes0\";s:40:\"433366c1fe5797c08e2edb78b7be56d154815190\";s:8:\"uploads0\";s:40:\"44e3be0c5a7f4877c978d24185ac86d951f5a75f\";s:8:\"uploads1\";s:40:\"71d7b8b462d128026468cd396cf39533d9a17a6a\";s:7:\"others0\";s:40:\"c9d1a0ec415a32fb5e43f7d91141d44fe7192148\";s:3:\"db0\";s:40:\"bafa3f0f96fdfa8037d5b007fbb8fe7204714850\";}s:6:\"sha256\";a:6:{s:8:\"plugins0\";s:64:\"977c8715f2b0084d765b2f4ac21f551c115de9fb694e34944fa6b2b5bbddb542\";s:7:\"themes0\";s:64:\"d8048f6a8e43144d842a8fc0d82579eff3f3a367fae628bbb76dbf74356b6e9c\";s:8:\"uploads0\";s:64:\"c30a36c486e77ee90a5d8585afc7283098c821675b66016442a2be6c1fc5819b\";s:8:\"uploads1\";s:64:\"bc01e0e96b8135a3bdc5d24c87e0d998a684c7cfae115377df8515652e2870b2\";s:7:\"others0\";s:64:\"5c74b3ff9d8e67c9bc1e2cf2a806bb3836c9f060431be546f9f76cbb24d444ef\";s:3:\"db0\";s:64:\"b2d03626bbce0a1d70ecab36d1702f3b832c6a99c3f181cbcdaa40d5fd841ec6\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"711a46749f3f\";}','yes'),(402,'wpseo_sitemap_author_cache_validator','5XbpK','no'),(2876,'updraft_lock_ce10c92469b8','1631743527','no'),(407,'wpseo_sitemap_category_cache_validator','qNnl','no'),(411,'wpseo_sitemap_post_cache_validator','5lIo7','no'),(414,'wpseo_sitemap_project_cache_validator','3Kv7S','no'),(1063,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(7158,'filemanager_email_verified_3','yes','yes'),(2461,'et_pb_contact_form_3eb5ed64630213311a9e04e5f12232c3','off','yes'),(2482,'et_pb_contact_form_4a00c586c7e3312ed975cb45d6c9e96f','off','yes'),(2485,'et_pb_contact_form_e7494e8d98f806e02cf29d880eb5c874','off','yes'),(2487,'et_pb_contact_form_34ae07451da37879cf65a32ed49f880c','off','yes'),(2491,'et_pb_contact_form_3ce7e1a33821671a23dd855faf416abc','off','yes'),(2519,'et_pb_contact_form_163dfc1dfc84abe9202544950bd76d09','off','yes'),(1715,'et_pb_contact_form_776741d468a2d39cd4ae494bd588c404','off','yes'),(3392,'et_pb_contact_form_607cc88f1d0ef91b1543ec44bc505b3f','off','yes'),(3404,'et_pb_contact_form_66af8753c0e5b33816b7b783cd5976d9','off','yes'),(3412,'et_pb_contact_form_78f32b65e286740ff18738fd264c834d','off','yes'),(51800,'et_pb_contact_form_4084cbcb059ac75fcaac2240909a276d','off','yes'),(52277,'et_pb_contact_form_34a4da64b47f22d2c35349431398b56c','off','yes'),(51807,'et_pb_contact_form_6660827c56e2b07c44d4fb42ec323a30','off','yes'),(51857,'et_pb_contact_form_04047b3f9218321807684fa1ac2e0add','off','yes'),(51837,'et_pb_contact_form_17e229ae9cefd905589bd87689bf10a9','off','yes'),(51850,'et_pb_contact_form_c425c70ac0a4ca0a7657ba4fa3db2560','off','yes'),(51853,'et_pb_contact_form_b4df413bc9527072494644e16535a945','off','yes'),(51852,'et_pb_contact_form_f9a910b77e81e34ceb78c53b35b35c60','off','yes'),(57983,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.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.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.5\";s:7:\"version\";s:5:\"5.9.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1670645080;s:15:\"version_checked\";s:5:\"5.8.6\";s:12:\"translations\";a:0:{}}','no'),(69306,'_transient_timeout_et_core_path','1670733419','no'),(69307,'_transient_et_core_path','/home/flapst5/flaphotography.com/wp-content/themes/Divi/core','no'),(66951,'_transient_timeout_et_core_version','1670733419','no'),(66952,'_transient_et_core_version','4.19.2','no'),(69705,'_site_transient_timeout_theme_roots','1670641202','no'),(69706,'_site_transient_theme_roots','a:1:{s:4:\"Divi\";s:7:\"/themes\";}','no'),(69555,'_site_transient_timeout_itsec_wp_upload_dir','1670702617','no'),(69556,'_site_transient_itsec_wp_upload_dir','a:6:{s:4:\"path\";s:53:\"/home/flapst5/kcjphoto.com/wp-content/uploads/2022/12\";s:3:\"url\";s:53:\"https://flaphotography.com/wp-content/uploads/2022/12\";s:6:\"subdir\";s:8:\"/2022/12\";s:7:\"basedir\";s:45:\"/home/flapst5/kcjphoto.com/wp-content/uploads\";s:7:\"baseurl\";s:45:\"https://flaphotography.com/wp-content/uploads\";s:5:\"error\";b:0;}','no'),(31546,'edd_sl_c732fed1ccab94593c395860084f027e','a:2:{s:7:\"timeout\";i:1662854720;s:5:\"value\";s:46265:\"{\"new_version\":\"2.9.7.1\",\"stable_version\":\"2.9.7.1\",\"name\":\"Divi Overlays\",\"slug\":\"divi-overlays\",\"url\":\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/?changelog=1\",\"last_updated\":\"2022-06-22 15:46:09\",\"homepage\":\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\",\"package\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTY2Mjk5ODcyMDphNjI4YzI1YjYxZTJmNDVkYWMxMTFjMDdlYmQ3YjY2Mjo0ODc2Mzo0MGNkYWI3OGY3MjhlNjMyYWVkYTQzYWM0MmY5MWYwNDpodHRwc0AvL2ZsYXBob3RvZ3JhcGh5LmNvbTow\",\"download_link\":\"https:\\/\\/divilife.com\\/edd-sl\\/package_download\\/MTY2Mjk5ODcyMDphNjI4YzI1YjYxZTJmNDVkYWMxMTFjMDdlYmQ3YjY2Mjo0ODc2Mzo0MGNkYWI3OGY3MjhlNjMyYWVkYTQzYWM0MmY5MWYwNDpodHRwc0AvL2ZsYXBob3RvZ3JhcGh5LmNvbTow\",\"sections\":{\"description\":\"<p>Divi Overlays is a brand new way to create beautiful full screen overlays, popups, or modals using the Divi Builder.<\\/p>\\n<p>Divi Overlays takes advantage of the power and flexibility of the\\u00a0Divi Builder\\u00a0which gives you the ability to\\u00a0easily add any type of content imaginable to an overlay, then trigger it with anything on the page: text links, images, Divi buttons, etc. Or use an automatic trigger such as timed delay, scroll delay, or exit intent!<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\",\"changelog\":\"<p><strong>NOTE: Make sure to Clear ALL Caches after updating including Divi\'s static CSS cache and your browser cache.<\\/strong><br \\/>\\nVersion 2.9.7.1 (06\\/22\\/22)<\\/p>\\n<ul>\\n<li>Fix video tag elements not playing when overlay is active<\\/li>\\n<li>Fix incompatibility issues with third-party plugins<\\/li>\\n<li>Better support for WP Rocket<\\/li>\\n<\\/ul>\\n<p>Version 2.9.7 (04\\/20\\/22)<\\/p>\\n<ul>\\n<li>New Display Locations options: All pages, All posts<\\/li>\\n<li>Archive and Author fields enabled by default<\\/li>\\n<li>Improve Ajax feature to better support Divi styles, animation and links options<\\/li>\\n<li>Improvements on Schedule Feature<\\/li>\\n<li>Better support for Divi Extra theme<\\/li>\\n<li>Minor fixes<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.7 (03\\/15\\/22)<\\/p>\\n<ul>\\n<li>Improve compatibility with playable HTML tags and Safari browser<\\/li>\\n<li>Fix linking Overlay to Overlay<\\/li>\\n<li>Fix Divi mobile menu not working on iOS devices<\\/li>\\n<li>Optimize cache efficiency<\\/li>\\n<li>Improve support for third-party cache plugins<\\/li>\\n<li>Support Divi module animations when overlay ajax feature is enabled<\\/li>\\n<li>Improve Ajax feature to better support Divi styles<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.6 (12\\/13\\/21)<\\/p>\\n<ul>\\n<li>Improve support for flatpickr datepicker<\\/li>\\n<li>Fix issue mixed Divi styles<\\/li>\\n<li>Fix issue with click triggers<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.5 (12\\/02\\/21)<\\/p>\\n<ul>\\n<li>Add new clear cache functions on plugin activation\\/deactivation, switching themes and when using Divi Clear button for \\\"Static CSS File Generation\\\"<\\/li>\\n<li>Improve close overlay functionality when using multiple closing features<\\/li>\\n<li>Increase compatibility with Divi animations and third-party plugins<\\/li>\\n<li>Better support Divi cache<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6 (10\\/21\\/21)<\\/p>\\n<ul>\\n<li>More support for third-party plugins<\\/li>\\n<li>Add new clear cache functions on post save<\\/li>\\n<\\/ul>\\n<p>Version 2.9.5 (10\\/12\\/21)<\\/p>\\n<ul>\\n<li>New Display Locations options \\\"Author\\\" and \\\"Force render\\\"<\\/li>\\n<li>Improve support for Facebook like button and OSX mobile<\\/li>\\n<li>Add option to enable\\/disable GDPR-compatible<\\/li>\\n<li>Fix small issues<\\/li>\\n<\\/ul>\\n<p>Version 2.9.4 (9\\/6\\/21)<\\/p>\\n<ul>\\n<li>Improve Divi styles support<\\/li>\\n<li>Improve \\\"Search for Overlay triggers\\\" functionality<\\/li>\\n<li>Better compatibility with plugins: Divi Builder and Gravity Forms<\\/li>\\n<li>Improvements on Ajax and Exit Intent features<\\/li>\\n<li>New Additional Overlays Settings \\\"Show for Guests only\\\" and \\\"Show for Registered Users only\\\" options<\\/li>\\n<li>Support plugin Divi Ghoster<\\/li>\\n<li>Support plugin \\\"Before After Image Slider Module for Divi\\\"<\\/li>\\n<\\/ul>\\n<p>Version 2.9.3 (6\\/30\\/21)<br \\/>\\n<strong>NOTE: Make sure to Clear ALL Caches after updating, and ideally make a backup before\\u00a0updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added major improvements on overlay post render (and removed getpost) to fix performance issues that some users experienced<\\/li>\\n<li>Optimize Ajax request<\\/li>\\n<li>Improved support for Divi animations within Divi Overlays<\\/li>\\n<li>Increase speed and performance of Ajax feature<\\/li>\\n<li>Added unique Divi CSS selectors for Divi Overlays<\\/li>\\n<li>Improved support for Divi mobile menu<\\/li>\\n<li>Added Close Linking feature<\\/li>\\n<li>Added support for the jQuery Slick Slider<\\/li>\\n<li>Fixed blur background animation<\\/li>\\n<li>Fixed \\\"Enable Cache\\\" button on plugin settings page<\\/li>\\n<li>Fixed issue preventing Ajax functionality from working properly<\\/li>\\n<li>Fixed close button on IE 11<\\/li>\\n<li>Fixed Divi Overlays not showing on 404 pages<\\/li>\\n<li>Fixed default Divi menu not working properly on mobile devices when an overlay was triggered<\\/li>\\n<li>Fixed Overlay trigger not working on Author pages<\\/li>\\n<li>Other Minor fixes and improvements<\\/li>\\n<\\/ul>\\n<p>Version 2.9.2 (6\\/4\\/21)<\\/p>\\n<ul>\\n<li>Internal release- fixes and enhancements from this release are added above<\\/li>\\n<\\/ul>\\n<p>Version 2.9.1.1 (5\\/19\\/21)<\\/p>\\n<ul>\\n<li>Various Smaller Fixes and improvements<\\/li>\\n<\\/ul>\\n<p>Version 2.9.1 (11\\/20\\/20)<br \\/>\\n<strong>NOTE: If you are updating from any version\\u00a0prior to 2.9, then please see the note below on backing up before update, and clearing all caches after update.<\\/strong><\\/p>\\n<ul>\\n<li>Cache is enabled by default Learn More: <a href=\\\"https:\\/\\/divilife.com\\/docs\\/an-overview-of-the-divi-overlays-cache\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/docs\\/an-overview-of-the-divi-overlays-cache\\/<\\/a><\\/li>\\n<\\/ul>\\n<p>Version 2.9.0.3 (11\\/9\\/20)<br \\/>\\n<strong>NOTE: This is a major update. Please backup before updating, and make sure ALL caches are cleared after updating (server cache, plugin cache, CDN cache, Divi cache, browser cache)<\\/strong><\\/p>\\n<ul>\\n<li>Re-work all animations to improve speed and browser support<\\/li>\\n<li>Divi Overlays background now fadeIn\\/Out<\\/li>\\n<li>Animations are now applied to Divi Overlays content<\\/li>\\n<li>Sliders control animation added to post edit<\\/li>\\n<li>Add 50+ animations<\\/li>\\n<li>Add Enable Background Blur<\\/li>\\n<li>Add fadeIn &amp; fadeOut animation by default to Overlay Close button<\\/li>\\n<li>Make Overlay background fadeIn for 1 second by default<\\/li>\\n<li>Remove old JS animations<\\/li>\\n<li>Reduce more than 100kb of total plugin size<\\/li>\\n<li>Improve method to search Divi Overlays triggers in shortcodes<\\/li>\\n<li>Add cache functionality to speed-up site load. This can be enabled\\/disabled on Divi Overlays admin settings page<\\/li>\\n<li>Add new \\\"divioverlay\\\" class reference on \\\"Manual Triggers\\\" metabox and page overview<\\/li>\\n<li>Don\'t limit posts per page when filtering by CSS Trigger and Automatic Trigger<\\/li>\\n<li>Re-work all cache functionality<\\/li>\\n<li>fix: Divi clickable elements opening multiple tabs on click<\\/li>\\n<li>fix: Avoid filter iFrame containing PDF file as source<\\/li>\\n<\\/ul>\\n<p>Version 2.8.11 (8\\/6\\/20)<\\/p>\\n<ul>\\n<li>Support Gravity Forms Styles Pro<\\/li>\\n<li>Support Caldera Forms<\\/li>\\n<li>Support Ultimate Member<\\/li>\\n<li>Support Divi Overlays triggers on woocommerce shop page<\\/li>\\n<li>Support to \\\"Slider Revolution by ThemePunch\\\"<\\/li>\\n<li>Support to the latest Gravity Forms Stripe Add-On<\\/li>\\n<li>Increase plugin performance<\\/li>\\n<li>Update styles based on latest Divi updates<\\/li>\\n<li>Improve Overlay Background functionality<\\/li>\\n<li>Improve ajax intercept function to avoid conflicts with other plugins<\\/li>\\n<li>Improve loading required JS files only when Divi Overlays triggers are found<\\/li>\\n<li>Improve license status checking<\\/li>\\n<li>Code adaptation to support IE11<\\/li>\\n<li>Add function to auto-enable Custom Post Divi Overlays under Divi Theme Options<\\/li>\\n<li>Fix style issue on \\\"Color Picker Slider\\\" in the post editor sidebar<\\/li>\\n<li>Remove \\\"Select Overlay Font Color\\\" field<\\/li>\\n<li>Remove iframe, script and style tags when parsing content from Divi Layouts<\\/li>\\n<li>type=\\\"text\\/css\\\" on style tags is no longer required<\\/li>\\n<li>type=\\\"text\\/javascript\\\" on script tags is no longer required<\\/li>\\n<li>Enqueue jquery script is no longer required<\\/li>\\n<li>Avoid render et_pb_contact_form shortcode to prevent Divi captcha issues<\\/li>\\n<li>Divi Overlays won\'t search for triggers on WooCommerce Checkout form to avoid any issues with third-party payment gateways.<\\/li>\\n<li>Reset browser scroll to top when Divi Overlays is opened and \\\"Prevent main page scrolling\\\" option is enabled<\\/li>\\n<li>Replace Browscap Full with Lite version to reduce server usage and plugin size<\\/li>\\n<li>Replace main Divi class \\\"overlay\\\" to \\\"divioverlay\\\". This will avoid issues with Visual Builder<\\/li>\\n<li>Remove widget Divi Overlays: Global Overlays<\\/li>\\n<\\/ul>\\n<p>Version 2.8.10 (4\\/22\\/20)<\\/p>\\n<ul>\\n<li>Optimize Overlays main functionality<\\/li>\\n<li>Improve overlays load speed<\\/li>\\n<li>Remove non-required modernizr<\\/li>\\n<li>Remove old code URL Trigger by filter<\\/li>\\n<li>Fix \\\"Corner Shape, Genie, Content Scale and Content Push\\\" effects<\\/li>\\n<li>Update Snap.svg JavaScript SVG library<\\/li>\\n<li>Small fixes to prevent PHP notices on a few cases<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.9 (4\\/14\\/20)<\\/p>\\n<ul>\\n<li>Apply Divi Render Layout Filter when getting current post content before searching for Overlays triggers<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Improve Divi Overlays custom CSS file generation from Divi Core main CSS file<\\/li>\\n<li>Add support to Divi custom fonts when Ajax feature is enabled<\\/li>\\n<li>Add support to Extra theme styles under categories<\\/li>\\n<li>Fix license issue on multi-sites<\\/li>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.8 (3\\/23\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays triggers detection<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<li>Remove position:fixed from body which was causing a rendering bug on Safari Mobile<\\/li>\\n<li>Add specific iOS mobile styles by using Divi iOS detect function<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Add support to Divi Shortcodes<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.7 (3\\/18\\/20)<\\/p>\\n<ul>\\n<li>Improved function to search for Divi Overlays in post\\/page content<\\/li>\\n<li>Allow Divi Overlays on 404 pages<\\/li>\\n<li>Allow Divi Overlays on search result pages<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.6 (3\\/16\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<li>Add a condition to check if WooCommerce is disabled before looking for rendering new Divi WooCommerce modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.5 (3\\/11\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays core<\\/li>\\n<li>Add support to Divi WooCommerce Modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.1 (3\\/4\\/20)<\\/p>\\n<ul>\\n<li>Small php fix to prevent notice issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9 (3\\/3\\/20)<\\/p>\\n<ul>\\n<li>Add translation support on post edit settings<\\/li>\\n<li>Add License file<\\/li>\\n<li>Remove non-required assets<\\/li>\\n<li>Reduce Inline Javascript<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.4 \\u00a0(1\\/30\\/20)<\\/p>\\n<ul>\\n<li>fix: Infinite Loop issue on Divi post edit<\\/li>\\n<li>fix: Do not load frontend assets on License page<\\/li>\\n<li>clean: Remove non-required functions<\\/li>\\n<li>enhancement: Update user admin messages to be related to Divi Life<\\/li>\\n<li>enhancement: Temporarily disable Divi CSS Static option only if it was enabled<\\/li>\\n<li>enhancement: Make scheduling based on WP Time core<\\/li>\\n<li>enhancement: New License page<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/21\\/20)<\\/p>\\n<ul>\\n<li>Fix duplicate emails issue when using Divi Contact Form<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/10\\/20)<\\/p>\\n<ul>\\n<li>Add touch\\/tap support to custom close button<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.1 \\u00a0(1\\/9\\/20)<\\/p>\\n<ul>\\n<li>Fix close button not working on iOS latest version<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8 \\u00a0(1\\/7\\/20)<\\/p>\\n<ul>\\n<li>Added proper Divi Overlay format on WooCommerce pages<\\/li>\\n<li>Fixed header CSS issue that affected nav menu and Divi\'s built-in search function<\\/li>\\n<\\/ul>\\n<p>Version 2.8.7 \\u00a0(1\\/3\\/20)<\\/p>\\n<ul>\\n<li>Fixed backend post editing issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.6 \\u00a0(12\\/24\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 2.8.5 \\u00a0(12\\/20\\/19)<\\/p>\\n<ul>\\n<li>Fix Divi Overlays not showing on homepage when Extra theme is enabled<\\/li>\\n<li>Include custom jQuery UI on Divi Overlays post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.4 \\u00a0(12\\/19\\/19)<\\/p>\\n<ul>\\n<li>Forced jQuery UI in order to prevent post edit issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.3 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix slider input not working on post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.2 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve current post detection<\\/li>\\n<\\/ul>\\n<p>Version 2.8.1 \\u00a0(12\\/04\\/19)<\\/p>\\n<ul>\\n<li>Improved AJAX support<\\/li>\\n<li>Fixed minor PHP issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.0 \\u00a0(11\\/01\\/19)<\\/p>\\n<ul>\\n<li>Improve compatibility with Monarch Wordpress Plugin<\\/li>\\n<li>Small fix issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.9 \\u00a0(10\\/28\\/19)<\\/p>\\n<ul>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.7.8 \\u00a0(10\\/24\\/19)<\\/p>\\n<ul>\\n<li>Small fix for hash trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.7.7 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 2.7.6 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improved Display Locations search<\\/li>\\n<\\/ul>\\n<p>Version 2.7.5 \\u00a0(10\\/09\\/19)<\\/p>\\n<ul>\\n<li>Feature Update: Added option to load overlay content via ajax once triggered<\\/li>\\n<li>Core improvements<\\/li>\\n<li>Reduce license requests<\\/li>\\n<li>Fix minor issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.1 \\u00a0(09\\/24\\/19)<\\/p>\\n<ul>\\n<li>Add support to Formidable Forms: reCaptcha field<\\/li>\\n<\\/ul>\\n<p>Version 2.7.0 \\u00a0(09\\/20\\/19)<\\/p>\\n<ul>\\n<li>Enhancement: Trigger Overlays from links containing hash<\\/li>\\n<li>Display Locations: reduce the size of fields in search results to improve performance<\\/li>\\n<li>Upgrade Select2 to version 4.0.9<\\/li>\\n<li>Hide License Keys from license activation screen once activated<\\/li>\\n<li>Add Support Display Locations in Categories, Tags and Archive<\\/li>\\n<\\/ul>\\n<p>Version 2.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Disable Divi Overlays when Divi Visual Builder is enabled<\\/li>\\n<\\/ul>\\n<p>Version 2.5.9 \\u00a0(06\\/28\\/19)<\\/p>\\n<ul>\\n<li>Increased the limit of Divi Overlays per page to 20<\\/li>\\n<\\/ul>\\n<p>Version 2.5.8 \\u00a0(06\\/24\\/19)<\\/p>\\n<ul>\\n<li>Fixed issue with Dot Nav showing border - last two dots did not work correctly and overlays added dots to the dot nav<\\/li>\\n<li>Fixed conflict with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 2.5.7 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix Exit intent glitching<\\/li>\\n<li>Fixed Exit intent with overlays and Mega Pro posts on main menu conflicting<\\/li>\\n<li>Allow Start \\/ End feature to include previous time to show overlay immediately<\\/li>\\n<\\/ul>\\n<p>Version 2.5.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 2.5.5 \\u00a0(11\\/07\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the \\u201cDisplay Once Per Page Load\\u201d feature not being disabled correctly<\\/li>\\n<li>Fixed an issue with settings from automatic triggers not allowing click triggers to function properly<\\/li>\\n<li>Fixed an issue with the Display Location &gt; Specific Page selection not saving correctly without automatic trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.5.4 \\u00a0(10\\/15\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the specific pages option not working correctly<\\/li>\\n<li>Fixed an issue where the \\u201cdisable on mobile\\u201d setting was also disabling overlay on tablets<\\/li>\\n<li>Fixed an issue preventing automatic triggers from being turned off once enabled<\\/li>\\n<li>Improved the close action button for creating custom close buttons: close-divi-overlay<\\/li>\\n<li>Fixed an error happening on large sites: \\u201cprevent notice error\\u201d from\\u00a0get_current_screen() WP function<\\/li>\\n<\\/ul>\\n<p>Version 2.5.1 \\u00a0(10\\/03\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Decreased requests to licensing server.<\\/li>\\n<li>Fixed an incompatibility with Divi Bars<\\/li>\\n<li>Fixed a crash bug in front end<\\/li>\\n<li>Fixed an issue with the Filterable Grid Portfolio plugin.<\\/li>\\n<li>Fixed various other minor bug.<\\/li>\\n<\\/ul>\\n<p>Version 2.2 (04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added New API Licensing System for Divi Overlays<\\/li>\\n<li>Fixed issue with Divi\\u2019s built in \\u201cProjects\\u201d post type pages not showing in list of \\u201cSpecific Pages\\u201d when setting triggers.<\\/li>\\n<li>Removed old unnecessary \\u201cAdmin Ajax\\u201d and \\u201cNormalize.CSS\\u201d files<\\/li>\\n<li>Fixed a conflict with the Gravity Forms plugin when redirecting to new page upon form completion.<\\/li>\\n<\\/ul>\\n<p>Version 2.1.3 (02\\/14\\/18)<\\/p>\\n<ul>\\n<li>Added Close Button Cookie Expiration Feature to control how long until the automatic trigger will execute the overlay again after a user has closed it<\\/li>\\n<li>Added scheduling feature to schedule a start and end time for automatic overlay triggers<\\/li>\\n<li>Fixed issue with videos inside overlays playing in the background before the overlay triggers (when video is set to autoplay)<\\/li>\\n<li>Enhanced the CSS Selector Trigger feature by adding ability to choose what pages it will display on<\\/li>\\n<li>Fixed various other minor bugs<\\/li>\\n<\\/ul>\\n<p>Version 2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue caused by the previous update that resulted in columns breaking in the builder.<\\/li>\\n<li>Fixed an issue that caused additional paragraph tags to be added around form fields in the Gravity Forms plugin.<\\/li>\\n<li>Fixed the issue with multiple overlays triggering on the same page when multiple overlays are set with automatic triggers but supposed to trigger on different pages.<\\/li>\\n<\\/ul>\\n<p>Version 2.0.1<\\/p>\\n<ul>\\n<li>Fixed the issue caused by a recent Divi update where custom button styling defined in the Divi builder was not being applied in the overlay.<\\/li>\\n<li>Fixed the issue caused by a recent Divi update where Divi Overlays was causing black bars to be shown on both sides of background videos.<\\/li>\\n<li>Fixed the issue where certain text editor formatting (line breaks, lists, bullets, etc.) was not being applied inside of the overlay.<\\/li>\\n<li>Fixed the issue where menu link triggers weren\\u2019t automatically adding the overlay content to the page.<\\/li>\\n<\\/ul>\\n<p>Version 2.0<br \\/>\\n<strong>This is a major update. Please backup before updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added Automatic Triggers\\n<ul>\\n<li>Timed Delay<\\/li>\\n<li>Scroll Delay<\\/li>\\n<li>Exit Intent<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Improved the way click triggers work in Divi Overlays. Content shortcodes are no longer needed. Instead, adding the click trigger will automatically add the overlay content to the page.<\\/li>\\n<li>Due to the above, Global Overlays are no longer necessary to set up via the Global Overlays widget area.<\\/li>\\n<li>In addition to adding the unique CSS ID to an\\u00a0element on the page, click triggers can also be set by adding a unique CSS string directly to the individual overlay edit screen. This allows more precise selection of click triggers on\\u00a0individual parts of a Divi module.<\\/li>\\n<li>Added close button customization options\\n<ul>\\n<li>added the ability to hide the main close button (per overlay)<\\/li>\\n<li>added ability to customize the close button by changing color, size, background color, background radius<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to link from overlay to overlay<\\/li>\\n<li>Added smooth scrolling of overlay on mobile devices<\\/li>\\n<li>Licensing username and password are no\\u00a0longer exposed\\u00a0for those that are turning sites over to clients<\\/li>\\n<li>added overlay unique CSS ID and Menu ID directly to overlay edit screen for easier access<\\/li>\\n<li>Multiple other minor fixes and enhancements<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2<\\/p>\\n<ul>\\n<li>Fixed a\\u00a0z-index issue that caused the overlay to not always be on top in certain cases.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1<\\/p>\\n<ul>\\n<li>Fixed a bug that caused the Divi mobile menu to break when a video was present in the overlay<\\/li>\\n<\\/ul>\\n<p>Version 1.1<\\/p>\\n<ul>\\n<li>Fixed a bug from version 1.0.4 that caused issues with the several Divi modules including the Divi form module, audio module, video module, as well as other 3rd party plugins such as form plugins.<\\/li>\\n<li>Added a new feature called \\u201cURL Triggers\\u201d that allows you to trigger the overlay on page load by placing \\/#overlay-1234 at the end of the URL. (change 1234 with overlay ID).<\\/li>\\n<li>Added three new ways to close overlays:\\n<ul>\\n<li>Overlays can now be closed by pressing the escape key<\\/li>\\n<li>Overlays can now be closed by clicking on the overlay background<\\/li>\\n<li>Overlays can now be closed by adding class=\\u201cclose-divi-overlay\\u201d to any link, button, element, etc. from within the overlay.<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to not let the background (main page) scroll when the overlay is opened.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4<\\/p>\\n<ul>\\n<li>Fixed the issue that broke the following animations in version 1.0.3: Genie, Little Boxes, Corner Shape, Content Scale, &amp; Content Push.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>Added full video support \\u201cout of the box.\\u201d Previously, videos inside of overlays would not pause automatically when the overlay was closed, causing the audio to continue being heard from the video playing in the background. Now, videos will automatically stop playing when the overlay is closed. This new feature has been fully tested on YouTube, Vimeo, and Wistia videos.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2<\\/p>\\n<ul>\\n<li>Fixed the javascript error that happened on pages where no overlay was found, causing other javascript on the page to break, particularly from other plugins.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>Fixed the secondary menu overlap issue.<\\/li>\\n<li>Fixed the function naming issue that caused a fatal error from conflicting with other Divi plugins, and\\/or child themes.<\\/li>\\n<\\/ul>\\n<p>Version 1.0<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Overlays product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/<\\/a><\\/p>\\n<p>&nbsp;<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:2:{s:2:\\\"1x\\\";s:92:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2018\\/10\\/divi-overlays-featured-image2018-128x128.jpg\\\";s:2:\\\"2x\\\";s:92:\\\"https:\\/\\/divilife.com\\/wp-content\\/uploads\\/2018\\/10\\/divi-overlays-featured-image2018-256x256.jpg\\\";}\",\"description\":[\"<p>Divi Overlays is a brand new way to create beautiful full screen overlays, popups, or modals using the Divi Builder.<\\/p>\\n<p>Divi Overlays takes advantage of the power and flexibility of the\\u00a0Divi Builder\\u00a0which gives you the ability to\\u00a0easily add any type of content imaginable to an overlay, then trigger it with anything on the page: text links, images, Divi buttons, etc. Or use an automatic trigger such as timed delay, scroll delay, or exit intent!<\\/p>\\n<p><a class=\\\"et_pb_button\\\" style=\\\"padding-top: 10px !important; padding-bottom: 10px !important;\\\" href=\\\"https:\\/\\/divilife.com\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">View Demo Site<\\/a><\\/p>\\n\"],\"changelog\":[\"<p><strong>NOTE: Make sure to Clear ALL Caches after updating including Divi\'s static CSS cache and your browser cache.<\\/strong><br \\/>\\nVersion 2.9.7.1 (06\\/22\\/22)<\\/p>\\n<ul>\\n<li>Fix video tag elements not playing when overlay is active<\\/li>\\n<li>Fix incompatibility issues with third-party plugins<\\/li>\\n<li>Better support for WP Rocket<\\/li>\\n<\\/ul>\\n<p>Version 2.9.7 (04\\/20\\/22)<\\/p>\\n<ul>\\n<li>New Display Locations options: All pages, All posts<\\/li>\\n<li>Archive and Author fields enabled by default<\\/li>\\n<li>Improve Ajax feature to better support Divi styles, animation and links options<\\/li>\\n<li>Improvements on Schedule Feature<\\/li>\\n<li>Better support for Divi Extra theme<\\/li>\\n<li>Minor fixes<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.7 (03\\/15\\/22)<\\/p>\\n<ul>\\n<li>Improve compatibility with playable HTML tags and Safari browser<\\/li>\\n<li>Fix linking Overlay to Overlay<\\/li>\\n<li>Fix Divi mobile menu not working on iOS devices<\\/li>\\n<li>Optimize cache efficiency<\\/li>\\n<li>Improve support for third-party cache plugins<\\/li>\\n<li>Support Divi module animations when overlay ajax feature is enabled<\\/li>\\n<li>Improve Ajax feature to better support Divi styles<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.6 (12\\/13\\/21)<\\/p>\\n<ul>\\n<li>Improve support for flatpickr datepicker<\\/li>\\n<li>Fix issue mixed Divi styles<\\/li>\\n<li>Fix issue with click triggers<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6.5 (12\\/02\\/21)<\\/p>\\n<ul>\\n<li>Add new clear cache functions on plugin activation\\/deactivation, switching themes and when using Divi Clear button for \\\"Static CSS File Generation\\\"<\\/li>\\n<li>Improve close overlay functionality when using multiple closing features<\\/li>\\n<li>Increase compatibility with Divi animations and third-party plugins<\\/li>\\n<li>Better support Divi cache<\\/li>\\n<\\/ul>\\n<p>Version 2.9.6 (10\\/21\\/21)<\\/p>\\n<ul>\\n<li>More support for third-party plugins<\\/li>\\n<li>Add new clear cache functions on post save<\\/li>\\n<\\/ul>\\n<p>Version 2.9.5 (10\\/12\\/21)<\\/p>\\n<ul>\\n<li>New Display Locations options \\\"Author\\\" and \\\"Force render\\\"<\\/li>\\n<li>Improve support for Facebook like button and OSX mobile<\\/li>\\n<li>Add option to enable\\/disable GDPR-compatible<\\/li>\\n<li>Fix small issues<\\/li>\\n<\\/ul>\\n<p>Version 2.9.4 (9\\/6\\/21)<\\/p>\\n<ul>\\n<li>Improve Divi styles support<\\/li>\\n<li>Improve \\\"Search for Overlay triggers\\\" functionality<\\/li>\\n<li>Better compatibility with plugins: Divi Builder and Gravity Forms<\\/li>\\n<li>Improvements on Ajax and Exit Intent features<\\/li>\\n<li>New Additional Overlays Settings \\\"Show for Guests only\\\" and \\\"Show for Registered Users only\\\" options<\\/li>\\n<li>Support plugin Divi Ghoster<\\/li>\\n<li>Support plugin \\\"Before After Image Slider Module for Divi\\\"<\\/li>\\n<\\/ul>\\n<p>Version 2.9.3 (6\\/30\\/21)<br \\/>\\n<strong>NOTE: Make sure to Clear ALL Caches after updating, and ideally make a backup before\\u00a0updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added major improvements on overlay post render (and removed getpost) to fix performance issues that some users experienced<\\/li>\\n<li>Optimize Ajax request<\\/li>\\n<li>Improved support for Divi animations within Divi Overlays<\\/li>\\n<li>Increase speed and performance of Ajax feature<\\/li>\\n<li>Added unique Divi CSS selectors for Divi Overlays<\\/li>\\n<li>Improved support for Divi mobile menu<\\/li>\\n<li>Added Close Linking feature<\\/li>\\n<li>Added support for the jQuery Slick Slider<\\/li>\\n<li>Fixed blur background animation<\\/li>\\n<li>Fixed \\\"Enable Cache\\\" button on plugin settings page<\\/li>\\n<li>Fixed issue preventing Ajax functionality from working properly<\\/li>\\n<li>Fixed close button on IE 11<\\/li>\\n<li>Fixed Divi Overlays not showing on 404 pages<\\/li>\\n<li>Fixed default Divi menu not working properly on mobile devices when an overlay was triggered<\\/li>\\n<li>Fixed Overlay trigger not working on Author pages<\\/li>\\n<li>Other Minor fixes and improvements<\\/li>\\n<\\/ul>\\n<p>Version 2.9.2 (6\\/4\\/21)<\\/p>\\n<ul>\\n<li>Internal release- fixes and enhancements from this release are added above<\\/li>\\n<\\/ul>\\n<p>Version 2.9.1.1 (5\\/19\\/21)<\\/p>\\n<ul>\\n<li>Various Smaller Fixes and improvements<\\/li>\\n<\\/ul>\\n<p>Version 2.9.1 (11\\/20\\/20)<br \\/>\\n<strong>NOTE: If you are updating from any version\\u00a0prior to 2.9, then please see the note below on backing up before update, and clearing all caches after update.<\\/strong><\\/p>\\n<ul>\\n<li>Cache is enabled by default Learn More: <a href=\\\"https:\\/\\/divilife.com\\/docs\\/an-overview-of-the-divi-overlays-cache\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/docs\\/an-overview-of-the-divi-overlays-cache\\/<\\/a><\\/li>\\n<\\/ul>\\n<p>Version 2.9.0.3 (11\\/9\\/20)<br \\/>\\n<strong>NOTE: This is a major update. Please backup before updating, and make sure ALL caches are cleared after updating (server cache, plugin cache, CDN cache, Divi cache, browser cache)<\\/strong><\\/p>\\n<ul>\\n<li>Re-work all animations to improve speed and browser support<\\/li>\\n<li>Divi Overlays background now fadeIn\\/Out<\\/li>\\n<li>Animations are now applied to Divi Overlays content<\\/li>\\n<li>Sliders control animation added to post edit<\\/li>\\n<li>Add 50+ animations<\\/li>\\n<li>Add Enable Background Blur<\\/li>\\n<li>Add fadeIn &amp; fadeOut animation by default to Overlay Close button<\\/li>\\n<li>Make Overlay background fadeIn for 1 second by default<\\/li>\\n<li>Remove old JS animations<\\/li>\\n<li>Reduce more than 100kb of total plugin size<\\/li>\\n<li>Improve method to search Divi Overlays triggers in shortcodes<\\/li>\\n<li>Add cache functionality to speed-up site load. This can be enabled\\/disabled on Divi Overlays admin settings page<\\/li>\\n<li>Add new \\\"divioverlay\\\" class reference on \\\"Manual Triggers\\\" metabox and page overview<\\/li>\\n<li>Don\'t limit posts per page when filtering by CSS Trigger and Automatic Trigger<\\/li>\\n<li>Re-work all cache functionality<\\/li>\\n<li>fix: Divi clickable elements opening multiple tabs on click<\\/li>\\n<li>fix: Avoid filter iFrame containing PDF file as source<\\/li>\\n<\\/ul>\\n<p>Version 2.8.11 (8\\/6\\/20)<\\/p>\\n<ul>\\n<li>Support Gravity Forms Styles Pro<\\/li>\\n<li>Support Caldera Forms<\\/li>\\n<li>Support Ultimate Member<\\/li>\\n<li>Support Divi Overlays triggers on woocommerce shop page<\\/li>\\n<li>Support to \\\"Slider Revolution by ThemePunch\\\"<\\/li>\\n<li>Support to the latest Gravity Forms Stripe Add-On<\\/li>\\n<li>Increase plugin performance<\\/li>\\n<li>Update styles based on latest Divi updates<\\/li>\\n<li>Improve Overlay Background functionality<\\/li>\\n<li>Improve ajax intercept function to avoid conflicts with other plugins<\\/li>\\n<li>Improve loading required JS files only when Divi Overlays triggers are found<\\/li>\\n<li>Improve license status checking<\\/li>\\n<li>Code adaptation to support IE11<\\/li>\\n<li>Add function to auto-enable Custom Post Divi Overlays under Divi Theme Options<\\/li>\\n<li>Fix style issue on \\\"Color Picker Slider\\\" in the post editor sidebar<\\/li>\\n<li>Remove \\\"Select Overlay Font Color\\\" field<\\/li>\\n<li>Remove iframe, script and style tags when parsing content from Divi Layouts<\\/li>\\n<li>type=\\\"text\\/css\\\" on style tags is no longer required<\\/li>\\n<li>type=\\\"text\\/javascript\\\" on script tags is no longer required<\\/li>\\n<li>Enqueue jquery script is no longer required<\\/li>\\n<li>Avoid render et_pb_contact_form shortcode to prevent Divi captcha issues<\\/li>\\n<li>Divi Overlays won\'t search for triggers on WooCommerce Checkout form to avoid any issues with third-party payment gateways.<\\/li>\\n<li>Reset browser scroll to top when Divi Overlays is opened and \\\"Prevent main page scrolling\\\" option is enabled<\\/li>\\n<li>Replace Browscap Full with Lite version to reduce server usage and plugin size<\\/li>\\n<li>Replace main Divi class \\\"overlay\\\" to \\\"divioverlay\\\". This will avoid issues with Visual Builder<\\/li>\\n<li>Remove widget Divi Overlays: Global Overlays<\\/li>\\n<\\/ul>\\n<p>Version 2.8.10 (4\\/22\\/20)<\\/p>\\n<ul>\\n<li>Optimize Overlays main functionality<\\/li>\\n<li>Improve overlays load speed<\\/li>\\n<li>Remove non-required modernizr<\\/li>\\n<li>Remove old code URL Trigger by filter<\\/li>\\n<li>Fix \\\"Corner Shape, Genie, Content Scale and Content Push\\\" effects<\\/li>\\n<li>Update Snap.svg JavaScript SVG library<\\/li>\\n<li>Small fixes to prevent PHP notices on a few cases<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.9 (4\\/14\\/20)<\\/p>\\n<ul>\\n<li>Apply Divi Render Layout Filter when getting current post content before searching for Overlays triggers<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Improve Divi Overlays custom CSS file generation from Divi Core main CSS file<\\/li>\\n<li>Add support to Divi custom fonts when Ajax feature is enabled<\\/li>\\n<li>Add support to Extra theme styles under categories<\\/li>\\n<li>Fix license issue on multi-sites<\\/li>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.8 (3\\/23\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays triggers detection<\\/li>\\n<li>Improve \\\"Prevent main page scrolling\\\" functionality<\\/li>\\n<li>Remove position:fixed from body which was causing a rendering bug on Safari Mobile<\\/li>\\n<li>Add specific iOS mobile styles by using Divi iOS detect function<\\/li>\\n<li>Add support to Divi Email Opt-in module<\\/li>\\n<li>Add support to Divi Shortcodes<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.7 (3\\/18\\/20)<\\/p>\\n<ul>\\n<li>Improved function to search for Divi Overlays in post\\/page content<\\/li>\\n<li>Allow Divi Overlays on 404 pages<\\/li>\\n<li>Allow Divi Overlays on search result pages<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.6 (3\\/16\\/20)<\\/p>\\n<ul>\\n<li>Update Divi render layout function<\\/li>\\n<li>Add a condition to check if WooCommerce is disabled before looking for rendering new Divi WooCommerce modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.5 (3\\/11\\/20)<\\/p>\\n<ul>\\n<li>Improve Divi Overlays core<\\/li>\\n<li>Add support to Divi WooCommerce Modules<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9.1 (3\\/4\\/20)<\\/p>\\n<ul>\\n<li>Small php fix to prevent notice issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.9 (3\\/3\\/20)<\\/p>\\n<ul>\\n<li>Add translation support on post edit settings<\\/li>\\n<li>Add License file<\\/li>\\n<li>Remove non-required assets<\\/li>\\n<li>Reduce Inline Javascript<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.4 \\u00a0(1\\/30\\/20)<\\/p>\\n<ul>\\n<li>fix: Infinite Loop issue on Divi post edit<\\/li>\\n<li>fix: Do not load frontend assets on License page<\\/li>\\n<li>clean: Remove non-required functions<\\/li>\\n<li>enhancement: Update user admin messages to be related to Divi Life<\\/li>\\n<li>enhancement: Temporarily disable Divi CSS Static option only if it was enabled<\\/li>\\n<li>enhancement: Make scheduling based on WP Time core<\\/li>\\n<li>enhancement: New License page<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/21\\/20)<\\/p>\\n<ul>\\n<li>Fix duplicate emails issue when using Divi Contact Form<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.2 \\u00a0(1\\/10\\/20)<\\/p>\\n<ul>\\n<li>Add touch\\/tap support to custom close button<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8.1 \\u00a0(1\\/9\\/20)<\\/p>\\n<ul>\\n<li>Fix close button not working on iOS latest version<\\/li>\\n<\\/ul>\\n<p>Version 2.8.8 \\u00a0(1\\/7\\/20)<\\/p>\\n<ul>\\n<li>Added proper Divi Overlay format on WooCommerce pages<\\/li>\\n<li>Fixed header CSS issue that affected nav menu and Divi\'s built-in search function<\\/li>\\n<\\/ul>\\n<p>Version 2.8.7 \\u00a0(1\\/3\\/20)<\\/p>\\n<ul>\\n<li>Fixed backend post editing issue<\\/li>\\n<\\/ul>\\n<p>Version 2.8.6 \\u00a0(12\\/24\\/19)<\\/p>\\n<ul>\\n<li>Upgrade plugin updater<\\/li>\\n<\\/ul>\\n<p>Version 2.8.5 \\u00a0(12\\/20\\/19)<\\/p>\\n<ul>\\n<li>Fix Divi Overlays not showing on homepage when Extra theme is enabled<\\/li>\\n<li>Include custom jQuery UI on Divi Overlays post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.4 \\u00a0(12\\/19\\/19)<\\/p>\\n<ul>\\n<li>Forced jQuery UI in order to prevent post edit issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.3 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix slider input not working on post edit<\\/li>\\n<\\/ul>\\n<p>Version 2.8.2 \\u00a0(12\\/17\\/19)<\\/p>\\n<ul>\\n<li>Improve current post detection<\\/li>\\n<\\/ul>\\n<p>Version 2.8.1 \\u00a0(12\\/04\\/19)<\\/p>\\n<ul>\\n<li>Improved AJAX support<\\/li>\\n<li>Fixed minor PHP issues<\\/li>\\n<\\/ul>\\n<p>Version 2.8.0 \\u00a0(11\\/01\\/19)<\\/p>\\n<ul>\\n<li>Improve compatibility with Monarch Wordpress Plugin<\\/li>\\n<li>Small fix issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.9 \\u00a0(10\\/28\\/19)<\\/p>\\n<ul>\\n<li>Fix small PHP issue<\\/li>\\n<\\/ul>\\n<p>Version 2.7.8 \\u00a0(10\\/24\\/19)<\\/p>\\n<ul>\\n<li>Small fix for hash trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.7.7 \\u00a0(10\\/18\\/19)<\\/p>\\n<ul>\\n<li>Update support for Divi Inline Styles<\\/li>\\n<\\/ul>\\n<p>Version 2.7.6 \\u00a0(10\\/15\\/19)<\\/p>\\n<ul>\\n<li>Improved Display Locations search<\\/li>\\n<\\/ul>\\n<p>Version 2.7.5 \\u00a0(10\\/09\\/19)<\\/p>\\n<ul>\\n<li>Feature Update: Added option to load overlay content via ajax once triggered<\\/li>\\n<li>Core improvements<\\/li>\\n<li>Reduce license requests<\\/li>\\n<li>Fix minor issues<\\/li>\\n<\\/ul>\\n<p>Version 2.7.1 \\u00a0(09\\/24\\/19)<\\/p>\\n<ul>\\n<li>Add support to Formidable Forms: reCaptcha field<\\/li>\\n<\\/ul>\\n<p>Version 2.7.0 \\u00a0(09\\/20\\/19)<\\/p>\\n<ul>\\n<li>Enhancement: Trigger Overlays from links containing hash<\\/li>\\n<li>Display Locations: reduce the size of fields in search results to improve performance<\\/li>\\n<li>Upgrade Select2 to version 4.0.9<\\/li>\\n<li>Hide License Keys from license activation screen once activated<\\/li>\\n<li>Add Support Display Locations in Categories, Tags and Archive<\\/li>\\n<\\/ul>\\n<p>Version 2.6.0 \\u00a0(07\\/29\\/19)<\\/p>\\n<ul>\\n<li>Disable Divi Overlays when Divi Visual Builder is enabled<\\/li>\\n<\\/ul>\\n<p>Version 2.5.9 \\u00a0(06\\/28\\/19)<\\/p>\\n<ul>\\n<li>Increased the limit of Divi Overlays per page to 20<\\/li>\\n<\\/ul>\\n<p>Version 2.5.8 \\u00a0(06\\/24\\/19)<\\/p>\\n<ul>\\n<li>Fixed issue with Dot Nav showing border - last two dots did not work correctly and overlays added dots to the dot nav<\\/li>\\n<li>Fixed conflict with the Elegant Themes Monarch plugin<\\/li>\\n<\\/ul>\\n<p>Version 2.5.7 \\u00a0(01\\/17\\/19)<\\/p>\\n<ul>\\n<li>Fix Exit intent glitching<\\/li>\\n<li>Fixed Exit intent with overlays and Mega Pro posts on main menu conflicting<\\/li>\\n<li>Allow Start \\/ End feature to include previous time to show overlay immediately<\\/li>\\n<\\/ul>\\n<p>Version 2.5.6 \\u00a0(12\\/13\\/18)<\\/p>\\n<ul>\\n<li>Added support for the new backend Divi Builder Experience, and the Visual Builder.<\\/li>\\n<\\/ul>\\n<p>Version 2.5.5 \\u00a0(11\\/07\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the \\u201cDisplay Once Per Page Load\\u201d feature not being disabled correctly<\\/li>\\n<li>Fixed an issue with settings from automatic triggers not allowing click triggers to function properly<\\/li>\\n<li>Fixed an issue with the Display Location &gt; Specific Page selection not saving correctly without automatic trigger<\\/li>\\n<\\/ul>\\n<p>Version 2.5.4 \\u00a0(10\\/15\\/18)<\\/p>\\n<ul>\\n<li>Fixed an issue with the specific pages option not working correctly<\\/li>\\n<li>Fixed an issue where the \\u201cdisable on mobile\\u201d setting was also disabling overlay on tablets<\\/li>\\n<li>Fixed an issue preventing automatic triggers from being turned off once enabled<\\/li>\\n<li>Improved the close action button for creating custom close buttons: close-divi-overlay<\\/li>\\n<li>Fixed an error happening on large sites: \\u201cprevent notice error\\u201d from\\u00a0get_current_screen() WP function<\\/li>\\n<\\/ul>\\n<p>Version 2.5.1 \\u00a0(10\\/03\\/18)<\\/p>\\n<ul>\\n<li>Added Recurring Scheduling feature<\\/li>\\n<li>Added feature to individually disable Divi Bar on Desktop\\/Tablet\\/Mobile<\\/li>\\n<li>Decreased requests to licensing server.<\\/li>\\n<li>Fixed an incompatibility with Divi Bars<\\/li>\\n<li>Fixed a crash bug in front end<\\/li>\\n<li>Fixed an issue with the Filterable Grid Portfolio plugin.<\\/li>\\n<li>Fixed various other minor bug.<\\/li>\\n<\\/ul>\\n<p>Version 2.2 (04\\/24\\/18)<\\/p>\\n<ul>\\n<li>Added New API Licensing System for Divi Overlays<\\/li>\\n<li>Fixed issue with Divi\\u2019s built in \\u201cProjects\\u201d post type pages not showing in list of \\u201cSpecific Pages\\u201d when setting triggers.<\\/li>\\n<li>Removed old unnecessary \\u201cAdmin Ajax\\u201d and \\u201cNormalize.CSS\\u201d files<\\/li>\\n<li>Fixed a conflict with the Gravity Forms plugin when redirecting to new page upon form completion.<\\/li>\\n<\\/ul>\\n<p>Version 2.1.3 (02\\/14\\/18)<\\/p>\\n<ul>\\n<li>Added Close Button Cookie Expiration Feature to control how long until the automatic trigger will execute the overlay again after a user has closed it<\\/li>\\n<li>Added scheduling feature to schedule a start and end time for automatic overlay triggers<\\/li>\\n<li>Fixed issue with videos inside overlays playing in the background before the overlay triggers (when video is set to autoplay)<\\/li>\\n<li>Enhanced the CSS Selector Trigger feature by adding ability to choose what pages it will display on<\\/li>\\n<li>Fixed various other minor bugs<\\/li>\\n<\\/ul>\\n<p>Version 2.0.2<\\/p>\\n<ul>\\n<li>Fixed an issue caused by the previous update that resulted in columns breaking in the builder.<\\/li>\\n<li>Fixed an issue that caused additional paragraph tags to be added around form fields in the Gravity Forms plugin.<\\/li>\\n<li>Fixed the issue with multiple overlays triggering on the same page when multiple overlays are set with automatic triggers but supposed to trigger on different pages.<\\/li>\\n<\\/ul>\\n<p>Version 2.0.1<\\/p>\\n<ul>\\n<li>Fixed the issue caused by a recent Divi update where custom button styling defined in the Divi builder was not being applied in the overlay.<\\/li>\\n<li>Fixed the issue caused by a recent Divi update where Divi Overlays was causing black bars to be shown on both sides of background videos.<\\/li>\\n<li>Fixed the issue where certain text editor formatting (line breaks, lists, bullets, etc.) was not being applied inside of the overlay.<\\/li>\\n<li>Fixed the issue where menu link triggers weren\\u2019t automatically adding the overlay content to the page.<\\/li>\\n<\\/ul>\\n<p>Version 2.0<br \\/>\\n<strong>This is a major update. Please backup before updating.<\\/strong><\\/p>\\n<ul>\\n<li>Added Automatic Triggers\\n<ul>\\n<li>Timed Delay<\\/li>\\n<li>Scroll Delay<\\/li>\\n<li>Exit Intent<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Improved the way click triggers work in Divi Overlays. Content shortcodes are no longer needed. Instead, adding the click trigger will automatically add the overlay content to the page.<\\/li>\\n<li>Due to the above, Global Overlays are no longer necessary to set up via the Global Overlays widget area.<\\/li>\\n<li>In addition to adding the unique CSS ID to an\\u00a0element on the page, click triggers can also be set by adding a unique CSS string directly to the individual overlay edit screen. This allows more precise selection of click triggers on\\u00a0individual parts of a Divi module.<\\/li>\\n<li>Added close button customization options\\n<ul>\\n<li>added the ability to hide the main close button (per overlay)<\\/li>\\n<li>added ability to customize the close button by changing color, size, background color, background radius<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to link from overlay to overlay<\\/li>\\n<li>Added smooth scrolling of overlay on mobile devices<\\/li>\\n<li>Licensing username and password are no\\u00a0longer exposed\\u00a0for those that are turning sites over to clients<\\/li>\\n<li>added overlay unique CSS ID and Menu ID directly to overlay edit screen for easier access<\\/li>\\n<li>Multiple other minor fixes and enhancements<\\/li>\\n<\\/ul>\\n<p>Version 1.1.2<\\/p>\\n<ul>\\n<li>Fixed a\\u00a0z-index issue that caused the overlay to not always be on top in certain cases.<\\/li>\\n<\\/ul>\\n<p>Version 1.1.1<\\/p>\\n<ul>\\n<li>Fixed a bug that caused the Divi mobile menu to break when a video was present in the overlay<\\/li>\\n<\\/ul>\\n<p>Version 1.1<\\/p>\\n<ul>\\n<li>Fixed a bug from version 1.0.4 that caused issues with the several Divi modules including the Divi form module, audio module, video module, as well as other 3rd party plugins such as form plugins.<\\/li>\\n<li>Added a new feature called \\u201cURL Triggers\\u201d that allows you to trigger the overlay on page load by placing \\/#overlay-1234 at the end of the URL. (change 1234 with overlay ID).<\\/li>\\n<li>Added three new ways to close overlays:\\n<ul>\\n<li>Overlays can now be closed by pressing the escape key<\\/li>\\n<li>Overlays can now be closed by clicking on the overlay background<\\/li>\\n<li>Overlays can now be closed by adding class=\\u201cclose-divi-overlay\\u201d to any link, button, element, etc. from within the overlay.<\\/li>\\n<\\/ul>\\n<\\/li>\\n<li>Added the ability to not let the background (main page) scroll when the overlay is opened.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.4<\\/p>\\n<ul>\\n<li>Fixed the issue that broke the following animations in version 1.0.3: Genie, Little Boxes, Corner Shape, Content Scale, &amp; Content Push.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.3<\\/p>\\n<ul>\\n<li>Added full video support \\u201cout of the box.\\u201d Previously, videos inside of overlays would not pause automatically when the overlay was closed, causing the audio to continue being heard from the video playing in the background. Now, videos will automatically stop playing when the overlay is closed. This new feature has been fully tested on YouTube, Vimeo, and Wistia videos.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.2<\\/p>\\n<ul>\\n<li>Fixed the javascript error that happened on pages where no overlay was found, causing other javascript on the page to break, particularly from other plugins.<\\/li>\\n<\\/ul>\\n<p>Version 1.0.1<\\/p>\\n<ul>\\n<li>Fixed the secondary menu overlap issue.<\\/li>\\n<li>Fixed the function naming issue that caused a fatal error from conflicting with other Divi plugins, and\\/or child themes.<\\/li>\\n<\\/ul>\\n<p>Version 1.0<\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>Divi Overlays product description, promo video, screenshots, and demos can be found here:\\u00a0<a href=\\\"https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">https:\\/\\/divilife.com\\/downloads\\/divi-overlays\\/<\\/a><\\/p>\\n<p>&nbsp;<\\/p>\\n\"]}\";}','no'),(15698,'et_pb_contact_form_f73d655407422b5cd12543872d07fead','off','yes'),(15479,'wpseo_sitemap_488_cache_validator','UjDh','no'),(15605,'divilife_divioverlays_gdpr','','yes'),(15606,'divilife_edd_divioverlays_license_key','a628c25b61e2f45dac111c07ebd7b662','yes'),(15607,'divilife_edd_divioverlays_license_status','valid','yes'),(15612,'divilife_edd_divioverlays_license_lastcheck','1663764047','yes'),(15613,'wpseo_sitemap_divi_overlay_cache_validator','xb7V','no'),(15616,'et_pb_contact_form_f60ab5309e65b4e552389e1f639c6d3d','off','yes'),(15621,'et_pb_contact_form_84844e45cd3a8c4152dccfa7b8d1e3c5','off','yes'),(34445,'et_pb_contact_form_4faed146bc8cad824f1dd0fb29fe2fff','off','yes'),(34444,'et_pb_contact_form_f14536cdfd8322e1fd611f3e873862ef','off','yes'),(34777,'et_pb_contact_form_0ee950c0399dc5b4cce8d7b476442bd8','off','yes'),(34778,'et_pb_contact_form_794639c2811cb6e034dc34c6013ed406','off','yes'),(34785,'et_pb_contact_form_2e9a15851145c4c9ef6eb010ab7823f9','off','yes'),(34987,'et_pb_contact_form_b364ee889d32954601451725efe6919e','off','yes'),(15599,'OnceMigrateCbcValues','1','yes'),(15600,'OnceMigrateUTValues','1','yes'),(15601,'OnceMigrateSAValues','1','yes'),(7964,'wp-smush-show_upgrade_modal','1','no'),(6001,'et_pb_contact_form_af422e6d68e6da84e637f7ad0a605f4e','off','yes'),(34452,'et_pb_contact_form_213792c2ac40902647484155e702ccbd','off','yes'),(34469,'et_pb_contact_form_dcafafc1645237b7df969857346d119d','off','yes'),(34472,'et_pb_contact_form_4fcdb4d9b1dab3cf533c6415af877e31','off','yes'),(34481,'et_pb_contact_form_0adea9167d75534e582aac2646c8fbb6','off','yes'),(34491,'et_pb_contact_form_94c24cd76d21215922089e0b582f75fe','off','yes'),(15394,'dib_settings','a:1:{s:16:\"dib_custom_elems\";s:0:\"\";}','yes'),(15395,'divilife_edd_divibars_license_key','a628c25b61e2f45dac111c07ebd7b662','yes'),(15396,'divilife_edd_divibars_license_status','valid','yes'),(15397,'wpseo_sitemap_divi_bars_cache_validator','4hpgG','no'),(61186,'recovery_mode_email_last_sent','1667741005','yes'),(66944,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1670636244;s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"4.19.2\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.19.2\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:140:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=d4330d465a0eb138ae675b67c8f080dc87500a73&username=KASSIJ\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"translations\";a:0:{}}','no'),(66945,'_site_transient_et_update_themes','O:8:\"stdClass\":4:{s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"4.19.2\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.19.2\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:140:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=d4330d465a0eb138ae675b67c8f080dc87500a73&username=KASSIJ\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"last_checked\";i:1670636244;}','no'),(68968,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1670639402;s:8:\"response\";a:2:{s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:7:\"2.0.4.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.0.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516\";s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.5\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"7.1.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:49:\"date-time-picker-field/date-time-picker-field.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/date-time-picker-field\";s:4:\"slug\";s:22:\"date-time-picker-field\";s:6:\"plugin\";s:49:\"date-time-picker-field/date-time-picker-field.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/date-time-picker-field/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/date-time-picker-field.2.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:75:\"https://ps.w.org/date-time-picker-field/assets/icon-256x256.png?rev=2469043\";s:2:\"1x\";s:67:\"https://ps.w.org/date-time-picker-field/assets/icon.svg?rev=2469047\";s:3:\"svg\";s:67:\"https://ps.w.org/date-time-picker-field/assets/icon.svg?rev=2469047\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/date-time-picker-field/assets/banner-772x250.png?rev=2565835\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/disable-xml-rpc-api\";s:4:\"slug\";s:19:\"disable-xml-rpc-api\";s:6:\"plugin\";s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";s:11:\"new_version\";s:7:\"2.1.4.5\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/disable-xml-rpc-api/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/disable-xml-rpc-api.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-xml-rpc-api/assets/icon-256x256.png?rev=2391445\";s:2:\"1x\";s:72:\"https://ps.w.org/disable-xml-rpc-api/assets/icon-128x128.png?rev=2391445\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/disable-xml-rpc-api/assets/banner-1544x500.jpg?rev=2391445\";s:2:\"1x\";s:74:\"https://ps.w.org/disable-xml-rpc-api/assets/banner-772x250.jpg?rev=2391445\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:6:\"8.10.1\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.10.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:83:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon-256x256.png?rev=1598927\";s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.8.0\";}s:41:\"better-wp-security/better-wp-security.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/better-wp-security\";s:4:\"slug\";s:18:\"better-wp-security\";s:6:\"plugin\";s:41:\"better-wp-security/better-wp-security.php\";s:11:\"new_version\";s:5:\"8.1.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/better-wp-security/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/better-wp-security.8.1.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/better-wp-security/assets/icon-256x256.png?rev=2698018\";s:2:\"1x\";s:63:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=2698018\";s:3:\"svg\";s:63:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=2698018\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/better-wp-security/assets/banner-772x250.png?rev=2698018\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"7.3\";s:14:\"upgrade_notice\";s:50:\"<p>Version 8.1.4 includes important bug fixes.</p>\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.12.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.12.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.22.23\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.22.23.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.jpg?rev=2811094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.jpg?rev=2811094\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:33:\"wps-hide-login/wps-hide-login.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/wps-hide-login\";s:4:\"slug\";s:14:\"wps-hide-login\";s:6:\"plugin\";s:33:\"wps-hide-login/wps-hide-login.php\";s:11:\"new_version\";s:5:\"1.9.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wps-hide-login/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wps-hide-login.1.9.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-256x256.png?rev=1820667\";s:2:\"1x\";s:67:\"https://ps.w.org/wps-hide-login/assets/icon-128x128.png?rev=1820667\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wps-hide-login/assets/banner-1544x500.jpg?rev=1820667\";s:2:\"1x\";s:69:\"https://ps.w.org/wps-hide-login/assets/banner-772x250.jpg?rev=1820667\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"19.11\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.11.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:7:\"checked\";a:15:{s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:49:\"date-time-picker-field/date-time-picker-field.php\";s:3:\"2.2\";s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";s:7:\"2.1.4.5\";s:23:\"divi-bars/divi-bars.php\";s:7:\"1.8.7.4\";s:37:\"divi-coming-soon/divi-coming-soon.php\";s:5:\"1.0.1\";s:31:\"divi-overlays/divi-overlays.php\";s:7:\"2.9.6.6\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:6:\"8.10.1\";s:41:\"better-wp-security/better-wp-security.php\";s:5:\"8.0.2\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.12.4\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.22.23\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"2.0.3\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"7.1.6\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.6.1\";s:33:\"wps-hide-login/wps-hide-login.php\";s:5:\"1.9.6\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"19.4\";}}','no'),(68969,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:14:{s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:49:\"date-time-picker-field/date-time-picker-field.php\";s:3:\"2.2\";s:43:\"disable-xml-rpc-api/disable-xml-rpc-api.php\";s:7:\"2.1.4.5\";s:23:\"divi-bars/divi-bars.php\";s:7:\"1.8.7.4\";s:37:\"divi-coming-soon/divi-coming-soon.php\";s:5:\"1.0.1\";s:31:\"divi-overlays/divi-overlays.php\";s:7:\"2.9.6.6\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:6:\"8.10.1\";s:41:\"better-wp-security/better-wp-security.php\";s:5:\"8.0.2\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.12.4\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"2.0.3\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"7.1.6\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.6.1\";s:33:\"wps-hide-login/wps-hide-login.php\";s:5:\"1.9.6\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"19.4\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1670636244;}','no'),(69619,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1671241042','no'),(69620,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(69664,'_transient_timeout_et_check_mod_pagespeed','1670724122','no'),(69665,'_transient_et_check_mod_pagespeed','','no'),(69602,'_transient_timeout__et_builder_gf_feature_cache','1670717828','no'),(69603,'_transient__et_builder_gf_feature_cache','1','no'),(69735,'_transient_timeout_global_styles','1670647061','no'),(69736,'_transient_global_styles','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--normal: 16px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--huge: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}','no'),(69608,'_et_builder_gf_feature_cache','a:2:{i:0;s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";i:1;a:2:{s:155:\"https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:7912:\"/* Original: https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format(\'woff2\');}\";}s:170:\"https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:9416:\"/* Original: https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exQ.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVc.ttf) format(\'truetype\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVc.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4exg.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVQ.woff) format(\'woff\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: italic;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjWV4ewA.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 300;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 400;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 500;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 600;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 700;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVI.woff2) format(\'woff2\');}@font-face {font-family: \'Open Sans\';font-style: normal;font-weight: 800;font-stretch: normal;font-display: swap;src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4uaVI.woff2) format(\'woff2\');}\";}}}','yes'),(69658,'_site_transient_timeout_available_translations','1670648414','no'),(69659,'_site_transient_available_translations','a:127:{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:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-04 12:22:36\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.21\";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.21/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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: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: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:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.22\";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.22/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-09-27 18:31:48\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-16 21:42:36\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-11 06:25:24\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-18 14:03:57\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-18 08:46:07\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-29 12:48:23\";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/5.8.6/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_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-07-10 12:19:50\";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/5.8.6/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:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-09 18:18:01\";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/5.8.6/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-09 18:20:31\";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/5.8.6/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_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-07-22 10:24:20\";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/5.8.6/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-07-22 10:24:47\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-09 16:47:33\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-18 07:38:40\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-09 12:16:08\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-30 10:41:52\";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/5.8.6/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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-09-03 10:52:30\";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/5.8.6/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:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-09-25 03:09:33\";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/5.8.6/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-20 10:54:47\";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/5.8.6/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-12 16:17:36\";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/5.8.6/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-18 12:41:47\";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/5.8.6/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-07 07:30:07\";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/5.8.6/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-07-30 00:35:05\";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/5.8.6/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:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.6\";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.6/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_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.6\";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.6/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-07 03:13:31\";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/5.8.6/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_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-07 03:14:21\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-07 03:16:00\";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/5.8.6/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_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.12\";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.12/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.17\";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.17/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-03 16:05:53\";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/5.8.6/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: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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-30 21:25:41\";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/5.8.6/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_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-20 06:40:11\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";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/5.8.6/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:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-07 05:31:38\";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/5.8.6/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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-06 16:05:28\";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/5.8.6/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:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-02 09:20:34\";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/5.8.6/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:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";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.21/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:\"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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-24 20:40:36\";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/5.8.6/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:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/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:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.29\";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.29/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-10 09:12:26\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-21 08:37:23\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-07-09 16:46:59\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-13 09:45:39\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-19 05:05:54\";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/5.8.6/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.22\";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.22/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-27 10:19:00\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-23 01:58:13\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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.22\";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.22/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-24 07:55:47\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-14 17:37:38\";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/5.8.6/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.22\";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.22/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.17\";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.17/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-03 06:17:02\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-06 13:14:34\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";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/5.8.6/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: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:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-04-09 13:23:05\";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/5.8.6/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:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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.22\";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.22/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.11\";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.11/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.34\";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.34/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-18 11:24:14\";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/5.8.6/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:6:\"5.2.17\";s:7:\"updated\";s:19:\"2020-05-31 16:07:59\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.17/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_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-04 09:56:16\";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/5.8.6/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:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-06 12:15:31\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-11-14 12:51:29\";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/5.8.6/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:\"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.21\";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.21/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-16 06:28:16\";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/5.8.6/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.30\";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.30/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:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-28 11:31:10\";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/5.8.6/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_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";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/5.8.6/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:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-17 20:40:24\";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/5.8.6/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-09-09 21:40:55\";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/5.8.6/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: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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-12-02 21:21:52\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-24 05:42:15\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/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.12\";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.12/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-02 08:42:46\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-15 15:37:00\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-11-23 08:11:23\";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/5.8.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-21 12:05:53\";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/5.8.6/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.6\";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.6/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-17 21:03:42\";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/5.8.6/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.14\";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.14/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.34\";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.34/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.6\";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.6/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.21\";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.21/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-10-21 20:18:07\";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/5.8.6/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.22\";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.22/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:\"5.8.6\";s:7:\"updated\";s:19:\"2022-03-06 15:05:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/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.12\";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.12/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:\"5.8.6\";s:7:\"updated\";s:19:\"2021-11-16 07:16:28\";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/5.8.6/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_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-15 22:30:57\";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/5.8.6/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:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-03-14 14:59:42\";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/5.8.6/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_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-11-11 03:08:04\";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/5.8.6/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:\"继续\";}}}','no'),(68178,'_et_builder_da_feature_cache','a:2:{i:0;s:39:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\"}\";i:1;a:4:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:4:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}s:0:\"\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:4:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}s:6:\"search\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:11:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:15:\"et_pb_row_inner\";i:10;s:12:\"et_pb_button\";i:20;s:22:\"et_pb_fullwidth_header\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:45;s:25:\"et_pb_social_media_follow\";i:49;s:10:\"et_pb_text\";i:51;s:11:\"et_pb_video\";}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}s:19:\"taxonomy/category/1\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:0:{}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}}}','yes'),(69237,'updraft_combine_jobs_around','1671147689','yes');
/*!40000 ALTER TABLE `wp1j_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_postmeta`
--

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

--
-- Dumping data for table `wp1j_postmeta`
--

LOCK TABLES `wp1j_postmeta` WRITE;
/*!40000 ALTER TABLE `wp1j_postmeta` DISABLE KEYS */;
INSERT INTO `wp1j_postmeta` VALUES (14,9,'_edit_last','1'),(15,9,'_wp_page_template','default'),(16,9,'_et_pb_post_hide_nav','default'),(17,9,'_et_pb_page_layout','et_right_sidebar'),(18,9,'_et_pb_side_nav','off'),(19,9,'_et_pb_use_builder','on'),(20,9,'_et_pb_first_image',''),(21,9,'_et_pb_truncate_post',''),(22,9,'_et_pb_truncate_post_date',''),(23,9,'_et_pb_old_content',''),(24,9,'_edit_lock','1634690429:1'),(25,9,'_et_pb_built_for_post_type','page'),(26,9,'_et_pb_ab_subjects',''),(27,9,'_et_pb_enable_shortcode_tracking',''),(28,9,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"9\" /]'),(29,9,'_et_pb_custom_css','/*image gallery item aspect ratio square 1:1*/\n\n.pa-image-gallery-1-1 .et_pb_gallery_image {\n  padding-top: 100%;\n  display: block;\n}\n\n.pa-image-gallery-1-1 .et_pb_gallery_item img {\n  position: absolute;\n  height: 100%;\n  width: 100%;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  object-fit: cover;\n}\n\n\n\n/*image gallery tiem aspect ratio portrait 2:3*/\n\n.pa-image-gallery-2-3 .et_pb_gallery_image {\n  padding-top: 150%;\n  display: block;\n}\n\n.pa-image-gallery-2-3 .et_pb_gallery_item img {\n  position: absolute;\n  height: 100%;\n  width: 100%;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  object-fit: cover;\n}\n\n\n\n\n/*image gallery item aspect ratio square 1:1*/\n\n.pa-image-gallery-1-1 .et_pb_gallery_image {\n  padding-top: 130%;\n  display: block;\n}\n\n.pa-image-gallery-1-1 .et_pb_gallery_item img {\n  position: absolute;\n  height: 100%;\n  width: 100%;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  object-fit: cover;\n}'),(30,9,'_et_pb_gutter_width','3'),(32,9,'_global_colors_info','{}'),(33,9,'_et_builder_version','VB|Divi|4.19.0'),(1184,848,'_et_pb_built_for_post_type','page'),(1185,848,'_et_pb_excluded_global_options','[]'),(36,13,'_wp_attached_file','2021/09/Requel_MG_9336-2500px.jpg'),(37,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2124;s:4:\"file\";s:33:\"2021/09/Requel_MG_9336-2500px.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-300x255.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Requel_MG_9336-2500px-1024x870.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-768x652.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Requel_MG_9336-2500px-1536x1305.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1305;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"Requel_MG_9336-2500px-2048x1740.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Requel_MG_9336-2500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Requel_MG_9336-2500px-1080x918.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Requel_MG_9336-2500px-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Requel_MG_9336-2500px-1280x1087.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1087;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-980x833.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:833;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Requel_MG_9336-2500px-480x408.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46,18,'_wp_attached_file','2021/09/Alicia_MG_9295-HEAD-2500PX.jpg'),(47,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2500;s:4:\"file\";s:38:\"2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Alicia_MG_9295-HEAD-2500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Alicia_MG_9295-HEAD-2500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Alicia_MG_9295-HEAD-2500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48,19,'_wp_attached_file','2021/09/Communication-team-CROP_MG_9302-2500px.jpg'),(49,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2344;s:6:\"height\";i:1507;s:4:\"file\";s:50:\"2021/09/Communication-team-CROP_MG_9302-2500px.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Communication-team-CROP_MG_9302-2500px-1024x658.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"Communication-team-CROP_MG_9302-2500px-1536x988.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"Communication-team-CROP_MG_9302-2500px-2048x1317.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Communication-team-CROP_MG_9302-2500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:51:\"Communication-team-CROP_MG_9302-2500px-1080x694.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:51:\"Communication-team-CROP_MG_9302-2500px-1280x823.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:823;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-980x630.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:50:\"Communication-team-CROP_MG_9302-2500px-480x309.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1624116565\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(50,20,'_wp_attached_file','2021/09/Tina_MG_9256-HEAD-1500PX.jpg'),(51,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:36:\"2021/09/Tina_MG_9256-HEAD-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Tina_MG_9256-HEAD-1500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Tina_MG_9256-HEAD-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Tina_MG_9256-HEAD-1500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"Tina_MG_9256-HEAD-1500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"Tina_MG_9256-HEAD-1500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,21,'_wp_attached_file','2021/09/FotoOPEN-LOGO-VERS-3.png'),(53,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:171;s:4:\"file\";s:32:\"2021/09/FotoOPEN-LOGO-VERS-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"FotoOPEN-LOGO-VERS-3-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-768x164.png\";s:5:\"width\";i:768;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-510x171.png\";s:5:\"width\";i:510;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-VERS-3-480x103.png\";s:5:\"width\";i:480;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54,22,'_wp_attached_file','2021/09/LOGO-FLAPSTART-ORG-230px.png'),(55,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:81;s:4:\"file\";s:36:\"2021/09/LOGO-FLAPSTART-ORG-230px.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"LOGO-FLAPSTART-ORG-230px-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,25,'_edit_last','1'),(57,9,'_et_pb_show_page_creation','off'),(59,25,'_wp_page_template','default'),(60,25,'_et_pb_post_hide_nav','default'),(61,25,'_et_pb_page_layout','et_right_sidebar'),(62,25,'_et_pb_side_nav','off'),(63,25,'_et_pb_use_builder','on'),(64,25,'_et_pb_first_image',''),(65,25,'_et_pb_truncate_post',''),(66,25,'_et_pb_truncate_post_date',''),(67,25,'_et_pb_old_content',''),(68,25,'_edit_lock','1648167880:1'),(69,27,'_wp_attached_file','2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg'),(70,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1920x1800.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-980x1470.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-1-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:44:\"Young-X-Emperor-IMG_0010-3000px-scaled-1.jpg\";}'),(71,28,'_wp_attached_file','2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg'),(72,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1988;s:6:\"height\";i:2560;s:4:\"file\";s:66:\"2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-795x1024.jpg\";s:5:\"width\";i:795;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-768x989.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:989;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-1193x1536.jpg\";s:5:\"width\";i:1193;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-1590x2048.jpg\";s:5:\"width\";i:1590;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-1080x1391.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-2236x1800.jpg\";s:5:\"width\";i:2236;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-1280x1648.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-980x1262.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-480x618.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:51:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1.jpg\";}'),(73,29,'_wp_attached_file','2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg'),(74,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1754;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-702x1024.jpg\";s:5:\"width\";i:702;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-768x1121.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1052x1536.jpg\";s:5:\"width\";i:1052;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1403x2048.jpg\";s:5:\"width\";i:1403;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1080x1576.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1973x1800.jpg\";s:5:\"width\";i:1973;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-1280x1868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-980x1430.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1-480x701.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:44:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-1.jpg\";}'),(75,30,'_wp_attached_file','2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg'),(76,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:67:\"2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1920x1800.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-980x1470.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:52:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-1.jpg\";}'),(77,31,'_wp_attached_file','2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg'),(78,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1866;s:4:\"file\";s:66:\"2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-1024x746.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-768x560.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-1536x1119.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-2048x1493.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-1080x787.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-1280x933.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:933;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-980x714.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-480x350.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:51:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1.jpg\";}'),(79,25,'_et_pb_built_for_post_type','page'),(80,25,'_et_pb_ab_subjects',''),(81,25,'_et_pb_enable_shortcode_tracking',''),(82,25,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"25\" /]'),(83,25,'_et_pb_custom_css',''),(84,25,'_et_pb_gutter_width','3'),(88,33,'_wp_attached_file','2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg'),(86,25,'_global_colors_info','{}'),(87,25,'_et_builder_version','VB|Divi|4.15.1'),(89,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1920x1800.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-980x1470.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"Young-X-Emperor-IMG_0010-3000px-scaled-2-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:44:\"Young-X-Emperor-IMG_0010-3000px-scaled-2.jpg\";}'),(90,34,'_wp_attached_file','2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg'),(91,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1988;s:6:\"height\";i:2560;s:4:\"file\";s:66:\"2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-795x1024.jpg\";s:5:\"width\";i:795;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-768x989.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:989;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-1193x1536.jpg\";s:5:\"width\";i:1193;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-1590x2048.jpg\";s:5:\"width\";i:1590;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-1080x1391.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-2236x1800.jpg\";s:5:\"width\";i:2236;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:61:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-1280x1648.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:60:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-980x1262.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-480x618.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:51:\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-2.jpg\";}'),(92,35,'_wp_attached_file','2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg'),(93,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1754;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-702x1024.jpg\";s:5:\"width\";i:702;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-768x1121.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1052x1536.jpg\";s:5:\"width\";i:1052;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1403x2048.jpg\";s:5:\"width\";i:1403;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1080x1576.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1973x1800.jpg\";s:5:\"width\";i:1973;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-1280x1868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-980x1430.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2-480x701.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:44:\"ASH-The-Queen-IMG_0008_1-3000px-scaled-2.jpg\";}'),(94,36,'_wp_attached_file','2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg'),(95,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:67:\"2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1920x1800.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:62:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:61:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-980x1470.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:60:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:52:\"Young-x-face-IMG_0002_1-No-title-3000px-scaled-2.jpg\";}'),(96,37,'_wp_attached_file','2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg'),(97,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1866;s:4:\"file\";s:66:\"2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-1024x746.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-768x560.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-1536x1119.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-2048x1493.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-1080x787.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:61:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:60:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-1280x933.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:933;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-980x714.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-480x350.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:51:\"Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2.jpg\";}'),(1183,817,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.45306526910659972173789356020279228687286376953125;s:5:\"bytes\";i:72272;s:11:\"size_before\";i:2092981;s:10:\"size_after\";i:2020709;s:4:\"time\";d:1.6700000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1081;s:11:\"size_before\";i:11731;s:10:\"size_after\";i:10650;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2777;s:11:\"size_before\";i:84170;s:10:\"size_after\";i:81393;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:936;s:11:\"size_before\";i:6491;s:10:\"size_after\";i:5555;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1977;s:11:\"size_before\";i:50877;s:10:\"size_after\";i:48900;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5382;s:11:\"size_before\";i:177106;s:10:\"size_after\";i:171724;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:9332;s:11:\"size_before\";i:303813;s:10:\"size_after\";i:294481;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:15412;s:10:\"size_after\";i:14308;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2878;s:11:\"size_before\";i:79929;s:10:\"size_after\";i:77051;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:17129;s:10:\"size_after\";i:15985;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1378;s:11:\"size_before\";i:25950;s:10:\"size_after\";i:24572;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:3130;s:11:\"size_before\";i:92869;s:10:\"size_after\";i:89739;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1423;s:11:\"size_before\";i:32766;s:10:\"size_after\";i:31343;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18348;s:11:\"size_before\";i:510841;s:10:\"size_after\";i:492493;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:3958;s:11:\"size_before\";i:126044;s:10:\"size_after\";i:122086;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2806;s:11:\"size_before\";i:77390;s:10:\"size_after\";i:74584;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1318;s:11:\"size_before\";i:23391;s:10:\"size_after\";i:22073;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13300;s:11:\"size_before\";i:457072;s:10:\"size_after\";i:443772;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(1181,817,'_wp_attached_file','2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg'),(1182,817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1902;s:4:\"file\";s:48:\"2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"ASH-GAZE-IMG_0003_3-2600-FREQ-1024x761.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-768x571.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"ASH-GAZE-IMG_0003_3-2600-FREQ-1536x1141.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"ASH-GAZE-IMG_0003_3-2600-FREQ-2048x1522.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"ASH-GAZE-IMG_0003_3-2600-FREQ-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"ASH-GAZE-IMG_0003_3-2600-FREQ-1080x803.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"ASH-GAZE-IMG_0003_3-2600-FREQ-2666x1800.jpg\";s:5:\"width\";i:2666;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"ASH-GAZE-IMG_0003_3-2600-FREQ-1280x951.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-980x728.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:728;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"ASH-GAZE-IMG_0003_3-2600-FREQ-480x357.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:33:\"ASH-GAZE-IMG_0003_3-2600-FREQ.jpg\";}'),(100,39,'_wp_attached_file','2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg'),(101,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2415;s:4:\"file\";s:52:\"2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-3000px-2-1024x966.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:966;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-768x724.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-3000px-2-1536x1449.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-3000px-2-2048x1932.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1932;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-3000px-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-3000px-2-1080x1019.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-3000px-2-2675x1800.jpg\";s:5:\"width\";i:2675;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-3000px-2-1280x1208.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-980x924.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-3000px-2-480x453.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1628622194\";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:{}}s:14:\"original_image\";s:37:\"Young-X-Madness-IMG_0016-3000px-2.jpg\";}'),(102,40,'_wp_attached_file','2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg'),(103,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2018;s:4:\"file\";s:65:\"2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-1024x807.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:807;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-768x605.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-1536x1211.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:60:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-2048x1614.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:59:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:59:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-1080x851.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:60:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:60:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-1280x1009.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1009;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-980x773.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:58:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-480x378.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:50:\"The-set-ash-sitting-IMG_0001_4-3000px-scaled-1.jpg\";}'),(104,41,'_wp_attached_file','2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg'),(105,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1888;s:6:\"height\";i:2560;s:4:\"file\";s:46:\"2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"ANDREW-BOSS-IMG_2437-2000PX-755x1024.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"ANDREW-BOSS-IMG_2437-2000PX-768x1041.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1041;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"ANDREW-BOSS-IMG_2437-2000PX-1133x1536.jpg\";s:5:\"width\";i:1133;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"ANDREW-BOSS-IMG_2437-2000PX-1510x2048.jpg\";s:5:\"width\";i:1510;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"ANDREW-BOSS-IMG_2437-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"ANDREW-BOSS-IMG_2437-2000PX-1080x1464.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:41:\"ANDREW-BOSS-IMG_2437-2000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"ANDREW-BOSS-IMG_2437-2000PX-1280x1736.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1736;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"ANDREW-BOSS-IMG_2437-2000PX-980x1329.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"ANDREW-BOSS-IMG_2437-2000PX-480x651.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"ANDREW-BOSS-IMG_2437-2000PX.jpg\";}'),(106,42,'_wp_attached_file','2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg'),(107,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1791;s:4:\"file\";s:40:\"2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-300x269.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"JOSIAH-IMG_2439-2000PX-FLASH-1024x917.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-768x688.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"JOSIAH-IMG_2439-2000PX-FLASH-1536x1375.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"JOSIAH-IMG_2439-2000PX-FLASH-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"JOSIAH-IMG_2439-2000PX-FLASH-1080x967.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:967;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"JOSIAH-IMG_2439-2000PX-FLASH-1280x1146.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-980x878.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"JOSIAH-IMG_2439-2000PX-FLASH-480x430.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,43,'_wp_attached_file','2021/09/BABIES-IMG_2506-2000PX.jpg'),(109,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1304;s:4:\"file\";s:34:\"2021/09/BABIES-IMG_2506-2000PX.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"BABIES-IMG_2506-2000PX-1024x668.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"BABIES-IMG_2506-2000PX-1536x1001.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"BABIES-IMG_2506-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"BABIES-IMG_2506-2000PX-1080x704.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"BABIES-IMG_2506-2000PX-1280x835.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:835;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-980x639.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"BABIES-IMG_2506-2000PX-480x313.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(110,44,'_wp_attached_file','2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg'),(111,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1505;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-176x300.jpg\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-602x1024.jpg\";s:5:\"width\";i:602;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-768x1306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-903x1536.jpg\";s:5:\"width\";i:903;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-1204x2048.jpg\";s:5:\"width\";i:1204;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-1080x1837.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1837;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:49:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-1693x1800.jpg\";s:5:\"width\";i:1693;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-1280x2177.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-980x1667.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"STEPHANIE-IMG_2526-2000PX7-scaled-1-480x816.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:39:\"STEPHANIE-IMG_2526-2000PX7-scaled-1.jpg\";}'),(112,45,'_wp_attached_file','2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg'),(113,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1625;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-190x300.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-650x1024.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-768x1210.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-975x1536.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-1300x2048.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-1080x1701.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1701;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-1625x1800.jpg\";s:5:\"width\";i:1625;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-1280x2016.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2016;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:56:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-980x1544.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1544;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"FlowCouple-Glass-IMG_0400-2500px-2-scaled-1-480x756.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(114,46,'_wp_attached_file','2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg'),(115,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2123;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-849x1024.jpg\";s:5:\"width\";i:849;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-768x926.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:926;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-1274x1536.jpg\";s:5:\"width\";i:1274;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:59:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-1698x2048.jpg\";s:5:\"width\";i:1698;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:58:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:59:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-1080x1302.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:59:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-2123x1800.jpg\";s:5:\"width\";i:2123;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:59:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-1280x1543.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:58:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-980x1182.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:57:\"Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1-480x579.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(116,47,'_wp_attached_file','2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg'),(117,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2481;s:4:\"file\";s:41:\"2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-1024x1016.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1016;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-768x762.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-1536x1524.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1524;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-2048x2032.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"FLOW-COUPLE-IMG_0415-2500PX-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-1080x1072.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1072;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"FLOW-COUPLE-IMG_0415-2500PX-2-1280x1270.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-980x973.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:973;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"FLOW-COUPLE-IMG_0415-2500PX-2-480x476.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,48,'_wp_attached_file','2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg'),(119,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2254;s:4:\"file\";s:46:\"2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-1024x923.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:923;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-768x692.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-1536x1385.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1385;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-2048x1846.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1846;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-1080x974.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-1280x1154.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-980x884.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:884;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2-480x433.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,49,'_wp_attached_file','2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg'),(121,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1641;s:4:\"file\";s:55:\"2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Lovers-shot-IMG_9632-3000px-scaled-1-1024x656.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-768x492.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Lovers-shot-IMG_9632-3000px-scaled-1-1536x985.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:985;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"Lovers-shot-IMG_9632-3000px-scaled-1-2048x1313.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"Lovers-shot-IMG_9632-3000px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"Lovers-shot-IMG_9632-3000px-scaled-1-1080x692.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:50:\"Lovers-shot-IMG_9632-3000px-scaled-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"Lovers-shot-IMG_9632-3000px-scaled-1-1280x821.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-980x628.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"Lovers-shot-IMG_9632-3000px-scaled-1-480x308.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Lovers-shot-IMG_9632-3000px-scaled-1.jpg\";}'),(122,50,'_wp_attached_file','2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg'),(123,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:47:\"2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Dad-mom-Flow-kiss-IMG_0486-2500px-3-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(124,51,'_wp_attached_file','2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg'),(125,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1754;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thairu-mom-IMG_0468-2500px2-scaled-1-702x1024.jpg\";s:5:\"width\";i:702;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thairu-mom-IMG_0468-2500px2-scaled-1-768x1121.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1052x1536.jpg\";s:5:\"width\";i:1052;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1403x2048.jpg\";s:5:\"width\";i:1403;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:50:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1080x1576.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:50:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1754x1800.jpg\";s:5:\"width\";i:1754;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:50:\"Thairu-mom-IMG_0468-2500px2-scaled-1-1280x1868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"Thairu-mom-IMG_0468-2500px2-scaled-1-980x1430.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"Thairu-mom-IMG_0468-2500px2-scaled-1-480x701.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(126,52,'_wp_attached_file','2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg'),(127,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1740;s:6:\"height\";i:2560;s:4:\"file\";s:51:\"2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-696x1024.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-768x1130.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1044x1536.jpg\";s:5:\"width\";i:1044;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1392x2048.jpg\";s:5:\"width\";i:1392;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1080x1589.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1589;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:53:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1740x1800.jpg\";s:5:\"width\";i:1740;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-1280x1883.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1883;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-980x1442.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1-480x706.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(128,53,'_wp_attached_file','2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg'),(129,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:47:\"2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thairu-Dad-IMG_0448-2500px-scaled-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thairu-Dad-IMG_0448-2500px-scaled-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1366x2048.jpg\";s:5:\"width\";i:1366;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1080x1620.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:49:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1707x1800.jpg\";s:5:\"width\";i:1707;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"Thairu-Dad-IMG_0448-2500px-scaled-1-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"Thairu-Dad-IMG_0448-2500px-scaled-1-980x1470.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Thairu-Dad-IMG_0448-2500px-scaled-1-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,25,'_thumbnail_id','0'),(131,25,'_et_pb_show_page_creation','off'),(140,61,'_edit_last','1'),(141,61,'_wp_page_template','default'),(142,61,'_et_pb_post_hide_nav','default'),(143,61,'_et_pb_page_layout','et_right_sidebar'),(144,61,'_et_pb_side_nav','off'),(145,61,'_et_pb_use_builder','on'),(146,61,'_et_pb_first_image',''),(147,61,'_et_pb_truncate_post',''),(148,61,'_et_pb_truncate_post_date',''),(149,61,'_et_pb_old_content',''),(150,61,'_edit_lock','1631493926:1'),(151,61,'_et_pb_built_for_post_type','page'),(152,61,'_et_pb_ab_subjects',''),(153,61,'_et_pb_enable_shortcode_tracking',''),(154,61,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"61\" /]'),(155,61,'_et_pb_custom_css',''),(156,61,'_et_pb_gutter_width','3'),(161,64,'_wp_attached_file','2021/09/Set-Photography-2500px-scaled-1.jpg'),(158,61,'_global_colors_info','{}'),(159,61,'_et_builder_version','VB|Divi|4.17.6'),(162,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1710;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/09/Set-Photography-2500px-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Set-Photography-2500px-scaled-1-684x1024.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Set-Photography-2500px-scaled-1-768x1150.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Set-Photography-2500px-scaled-1-1026x1536.jpg\";s:5:\"width\";i:1026;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Set-Photography-2500px-scaled-1-1368x2048.jpg\";s:5:\"width\";i:1368;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Set-Photography-2500px-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"Set-Photography-2500px-scaled-1-1080x1617.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1617;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Set-Photography-2500px-scaled-1-1710x1800.jpg\";s:5:\"width\";i:1710;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"Set-Photography-2500px-scaled-1-1280x1916.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1916;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Set-Photography-2500px-scaled-1-980x1467.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Set-Photography-2500px-scaled-1-480x719.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(163,65,'_wp_attached_file','2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg'),(164,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2466;s:6:\"height\";i:1585;s:4:\"file\";s:43:\"2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Flow-Marvi-Spark_MG_8496-2500px-1024x658.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Flow-Marvi-Spark_MG_8496-2500px-1536x987.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Flow-Marvi-Spark_MG_8496-2500px-2048x1316.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Flow-Marvi-Spark_MG_8496-2500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Flow-Marvi-Spark_MG_8496-2500px-1080x694.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"Flow-Marvi-Spark_MG_8496-2500px-1280x823.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:823;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-980x630.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Flow-Marvi-Spark_MG_8496-2500px-480x309.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1622996537\";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:{}}}'),(165,66,'_wp_attached_file','2021/09/Flow-presence_MG_8542-2500px.jpg'),(166,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2181;s:4:\"file\";s:40:\"2021/09/Flow-presence_MG_8542-2500px.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Flow-presence_MG_8542-2500px-1024x893.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:893;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-768x670.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Flow-presence_MG_8542-2500px-1536x1340.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"Flow-presence_MG_8542-2500px-2048x1787.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1787;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Flow-presence_MG_8542-2500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Flow-presence_MG_8542-2500px-1080x942.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:942;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Flow-presence_MG_8542-2500px-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"Flow-presence_MG_8542-2500px-1280x1117.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-980x855.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Flow-presence_MG_8542-2500px-480x419.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,68,'_wp_attached_file','2021/09/Flow-Blue-Fade-2000px.jpg'),(170,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1518;s:4:\"file\";s:33:\"2021/09/Flow-Blue-Fade-2000px.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Flow-Blue-Fade-2000px-1024x777.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Flow-Blue-Fade-2000px-1536x1166.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Flow-Blue-Fade-2000px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Flow-Blue-Fade-2000px-1080x820.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"Flow-Blue-Fade-2000px-1280x972.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:972;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-980x744.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Flow-Blue-Fade-2000px-480x364.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,61,'_thumbnail_id','0'),(172,61,'_et_pb_show_page_creation','off'),(173,71,'_edit_last','1'),(174,71,'_wp_page_template','default'),(175,71,'_et_pb_post_hide_nav','default'),(176,71,'_et_pb_page_layout','et_right_sidebar'),(177,71,'_et_pb_side_nav','off'),(178,71,'_et_pb_use_builder','on'),(179,71,'_et_pb_first_image',''),(180,71,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_0 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"54\" src=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" alt=\"\" class=\"wp-image-902\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-25 menu-item menu-item-type-post_type menu-item-object-page menu-item-210\"><a href=\"https://flaphotography.com/couples-family-sessions/\">COUPLES &#038; FAMILY SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-71 menu-item menu-item-type-post_type menu-item-object-page menu-item-212\"><a href=\"https://flaphotography.com/wedding-photography/\">WEDDING PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">WEDDING PHOTOGRAPHY<br />\nMagnify the image with a click.</div>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_3 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">SMALL PLAN $1,599</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_0  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>5 hours of shooting.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_1  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Up to 2 shooting locations (one is the ceremony).</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_2  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>50 retouched photos.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_3  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Online gallery for viewing and choosing.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_4  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_5  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. </span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_6  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>We do not give away or sell unedited / raw photos since they are not the final representation of our work.</span></h4>\n						\n					</div>\n				</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">STANDARD PLAN $1,999</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_7  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>8 hours of shooting.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_8  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Up to 3 shooting locations (one is the ceremony).</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_9  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>60 retouched photos.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_10  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Online gallery for viewing and choosing.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_11  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_12  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. </span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_13  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>We do not give away or sell unedited / raw photos since they are not the final representation of our work.</span></h4>\n						\n					</div>\n				</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">PREMIUM PLAN $2,599</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_14  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>10 hours of shooting.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_15  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). </span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_16  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Up to 4 shooting locations (one is the ceremony).</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_17  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>75 retouched photos.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_18  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Online gallery for viewing and choosing.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_19  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_20  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. </span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_21  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>We do not give away or sell unedited / raw photos since they are not the final representation of our work.</span></h4>\n						\n					</div>\n				</div>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Standard Retouching Included</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_22  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Exposure adjustment.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_23  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Skin tone correction.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_24  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Facial Blemishes removal (such as scars, and pimples).</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_25  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Teeth whitening.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_26  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Basic sharpening.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_27  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Stray hair removal.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_28  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Removing minor background distractions.</span></h4>\n						\n					</div>\n				</div>\n			</div><div class=\"et_pb_module et_pb_blurb et_pb_blurb_29  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et_pb_animation_top_tablet et_pb_animation_top_phone et-pb-icon\">&#xe044;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Outfit minor stains removal. </span></h4>\n						\n					</div>\n				</div>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_5 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">ADDITIONAL RETOUCHING</p>\n<p> 	Outfit color change, $29 / image.<br />\n 	Lipstick and finger nails color change (including toes), $29 / image.<br />\n 	COMBO: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<br />\n 	Background color change, $29 / image.<br />\n 	Background replacement for a different scene, $45 / image.<br />\n 	Facial dodging and burning, $19 / image.</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://flaphotography.com/couples-family-sessions/\">COUPLES &amp; FAMILY SESSIONS</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_7 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://flaphotography.com/couples-family-sessions/\" data-icon=\"&#x45;\">Couples &amp; Family Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_5_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_5 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_6_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_6 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_0 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_0 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_1 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/flaphotography_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_button_module_wrapper et_pb_button_7_wrapper et_pb_button_alignment_left et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_7 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" data-icon=\"&#x45;\">GET BIG 20% OFF</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_0 video-autoplayb\">\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(181,71,'_et_pb_truncate_post_date','2022-02-06 08:09:34'),(182,71,'_et_pb_old_content',''),(183,71,'_edit_lock','1648162488:1'),(184,71,'_et_pb_built_for_post_type','page'),(185,71,'_et_pb_ab_subjects',''),(186,71,'_et_pb_enable_shortcode_tracking',''),(187,71,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"71\" /]'),(188,71,'_et_pb_custom_css',''),(189,71,'_et_pb_gutter_width','3'),(201,79,'_et_pb_post_hide_nav','default'),(191,71,'_global_colors_info','{}'),(192,71,'_et_builder_version','VB|Divi|4.9.7'),(194,74,'_wp_attached_file','2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg'),(195,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:52:\"2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-1-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(196,71,'_et_pb_show_page_creation','off'),(200,79,'_wp_page_template','default'),(199,79,'_edit_last','1'),(202,79,'_et_pb_page_layout','et_right_sidebar'),(203,79,'_et_pb_side_nav','off'),(204,79,'_et_pb_use_builder','on'),(205,79,'_et_pb_first_image',''),(206,79,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_35 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_25\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_44  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">SORRY! THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_26\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_45  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_15 et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"230\" height=\"81\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" alt=\"\" title=\"LOGO-FLAPSTART-ORG-230px\" class=\"wp-image-22\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_46  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">CUSTOM WEB DESIGN</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Looking Professional on the Web</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">By Kassi J.</div>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_36 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_27\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_47  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_countdown_timer et_pb_countdown_timer_0 et_pb_bg_layout_dark\" data-end-timestamp=\"1634352060\">\n				\n				\n				<div class=\"et_pb_countdown_timer_container clearfix\">\n					<h4 class=\"title\">DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY</h4>\n					<div class=\"days section values\" data-short=\"Day\" data-full=\"Day(s)\">\n						<p class=\"value\"></p>\n						<p class=\"label\">Day(s)</p>\n					</div><div class=\"sep section\">\n						<p>:</p>\n					</div><div class=\"hours section values\" data-short=\"Hrs\" data-full=\"Hour(s)\">\n						<p class=\"value\"></p>\n						<p class=\"label\">Hour(s)</p>\n					</div><div class=\"sep section\">\n						<p>:</p>\n					</div><div class=\"minutes section values\" data-short=\"Min\" data-full=\"Minute(s)\">\n						<p class=\"value\"></p>\n						<p class=\"label\">Minute(s)</p>\n					</div><div class=\"sep section\">\n						<p>:</p>\n					</div><div class=\"seconds section values\" data-short=\"Sec\" data-full=\"Second(s)\">\n						<p class=\"value\"></p>\n						<p class=\"label\">Second(s)</p>\n					</div>\n				</div>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(207,79,'_et_pb_truncate_post_date','2022-01-04 03:02:00'),(208,79,'_et_pb_old_content',''),(209,79,'_edit_lock','1634690481:1'),(210,82,'_wp_attached_file','2021/09/FotoOPEN-LOGO-2-VERS.png'),(211,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:171;s:4:\"file\";s:32:\"2021/09/FotoOPEN-LOGO-2-VERS.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"FotoOPEN-LOGO-2-VERS-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-768x164.png\";s:5:\"width\";i:768;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-510x171.png\";s:5:\"width\";i:510;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-400x171.png\";s:5:\"width\";i:400;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:32:\"FotoOPEN-LOGO-2-VERS-480x103.png\";s:5:\"width\";i:480;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,79,'_et_pb_built_for_post_type','page'),(213,79,'_et_pb_ab_subjects',''),(214,79,'_et_pb_enable_shortcode_tracking',''),(215,79,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"79\" /]'),(216,79,'_et_pb_custom_css',''),(217,79,'_et_pb_gutter_width','3'),(1041,79,'_yoast_wpseo_content_score','90'),(219,79,'_global_colors_info','{}'),(220,79,'_et_builder_version','VB|Divi|4.9.7'),(221,79,'_et_pb_show_page_creation','off'),(224,85,'_edit_last','1'),(225,85,'_wp_page_template','default'),(226,85,'_et_pb_post_hide_nav','default'),(227,85,'_et_pb_page_layout','et_right_sidebar'),(228,85,'_et_pb_side_nav','off'),(229,85,'_et_pb_use_builder','on'),(230,85,'_et_pb_first_image',''),(231,85,'_et_pb_truncate_post',''),(232,85,'_et_pb_truncate_post_date',''),(233,85,'_et_pb_old_content',''),(234,85,'_yoast_wpseo_estimated-reading-time-minutes',''),(235,85,'_edit_lock','1631269306:1'),(236,85,'_et_pb_built_for_post_type','page'),(237,85,'_et_pb_ab_subjects',''),(238,85,'_et_pb_enable_shortcode_tracking',''),(239,85,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"85\" /]'),(240,85,'_et_pb_custom_css',''),(241,85,'_et_pb_gutter_width','3'),(245,85,'_yoast_wpseo_content_score','60'),(243,85,'_global_colors_info','{}'),(244,85,'_et_builder_version','VB|Divi|4.17.6'),(246,89,'_wp_attached_file','2021/09/Classic-Pen4.jpg'),(247,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:607;s:4:\"file\";s:24:\"2021/09/Classic-Pen4.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-768x476.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Classic-Pen4-480x297.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(248,90,'_wp_attached_file','2021/09/Classic-Pen-Further-right.jpg'),(249,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:607;s:4:\"file\";s:37:\"2021/09/Classic-Pen-Further-right.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-768x476.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"Classic-Pen-Further-right-480x297.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(250,89,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:63.4635760509886353020192473195493221282958984375;s:5:\"bytes\";i:194665;s:11:\"size_before\";i:306735;s:10:\"size_after\";i:112070;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:23878;s:11:\"size_before\";i:31473;s:10:\"size_after\";i:7595;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:23877;s:11:\"size_before\";i:28117;s:10:\"size_after\";i:4240;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:24930;s:11:\"size_before\";i:53420;s:10:\"size_after\";i:28490;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:24266;s:11:\"size_before\";i:34324;s:10:\"size_after\";i:10058;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:24364;s:11:\"size_before\";i:35897;s:10:\"size_after\";i:11533;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.36999999999999744204615126363933086395263671875;s:5:\"bytes\";i:24614;s:11:\"size_before\";i:42170;s:10:\"size_after\";i:17556;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:24507;s:11:\"size_before\";i:43245;s:10:\"size_after\";i:18738;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:24229;s:11:\"size_before\";i:38089;s:10:\"size_after\";i:13860;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(251,91,'_wp_attached_file','2021/09/Photographer-Blue-Red-Radient-1.jpg'),(252,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1686;s:6:\"height\";i:1280;s:4:\"file\";s:43:\"2021/09/Photographer-Blue-Red-Radient-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Photographer-Blue-Red-Radient-1-1024x777.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Photographer-Blue-Red-Radient-1-1536x1166.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Photographer-Blue-Red-Radient-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Photographer-Blue-Red-Radient-1-1080x820.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"Photographer-Blue-Red-Radient-1-1280x972.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:972;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-980x744.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Photographer-Blue-Red-Radient-1-480x364.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(253,90,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:65.5949215701510439657795359380543231964111328125;s:5:\"bytes\";i:194159;s:11:\"size_before\";i:295997;s:10:\"size_after\";i:101838;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:23889;s:11:\"size_before\";i:31479;s:10:\"size_after\";i:7590;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.5199999999999960209606797434389591217041015625;s:5:\"bytes\";i:23844;s:11:\"size_before\";i:27245;s:10:\"size_after\";i:3401;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:24899;s:11:\"size_before\";i:53304;s:10:\"size_after\";i:28405;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.56000000000000227373675443232059478759765625;s:5:\"bytes\";i:24299;s:11:\"size_before\";i:34437;s:10:\"size_after\";i:10138;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.9899999999999948840923025272786617279052734375;s:5:\"bytes\";i:24367;s:11:\"size_before\";i:35841;s:10:\"size_after\";i:11474;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:24638;s:11:\"size_before\";i:42139;s:10:\"size_after\";i:17501;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:23981;s:11:\"size_before\";i:33584;s:10:\"size_after\";i:9603;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:24242;s:11:\"size_before\";i:37968;s:10:\"size_after\";i:13726;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(254,92,'_wp_attached_file','2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg'),(255,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:50:\"2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Wedding-couple-3-Sky-Replaced-scaled-1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-scaled-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"Wedding-couple-3-Sky-Replaced-scaled-1-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Wedding-couple-3-Sky-Replaced-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:51:\"Wedding-couple-3-Sky-Replaced-scaled-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:51:\"Wedding-couple-3-Sky-Replaced-scaled-1-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:50:\"Wedding-couple-3-Sky-Replaced-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(256,91,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.3372632712198377902268475736491382122039794921875;s:5:\"bytes\";i:91179;s:11:\"size_before\";i:683641;s:10:\"size_after\";i:592462;s:4:\"time\";d:1.2900000000000002575717417130363173782825469970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8168;s:11:\"size_before\";i:18190;s:10:\"size_after\";i:10022;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:5562;s:11:\"size_before\";i:67941;s:10:\"size_after\";i:62379;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.7699999999999960209606797434389591217041015625;s:5:\"bytes\";i:8263;s:11:\"size_before\";i:12758;s:10:\"size_after\";i:4495;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6835;s:11:\"size_before\";i:46597;s:10:\"size_after\";i:39762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6599999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:1974;s:11:\"size_before\";i:119123;s:10:\"size_after\";i:117149;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:8009;s:11:\"size_before\";i:20321;s:10:\"size_after\";i:12312;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6012;s:11:\"size_before\";i:61332;s:10:\"size_after\";i:55320;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:8016;s:11:\"size_before\";i:22119;s:10:\"size_after\";i:14103;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:7727;s:11:\"size_before\";i:29008;s:10:\"size_after\";i:21281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5336;s:11:\"size_before\";i:72873;s:10:\"size_after\";i:67537;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7638;s:11:\"size_before\";i:30134;s:10:\"size_after\";i:22496;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4096;s:11:\"size_before\";i:91930;s:10:\"size_after\";i:87834;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:5758;s:11:\"size_before\";i:63954;s:10:\"size_after\";i:58196;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7785;s:11:\"size_before\";i:27361;s:10:\"size_after\";i:19576;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(257,93,'_wp_attached_file','2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg'),(258,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1636;s:4:\"file\";s:56:\"2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1024x654.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1536x982.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:982;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-2048x1309.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:57:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1080x690.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1280x818.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-980x626.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:56:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(259,92,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1536430846569885877439531896015978418290615081787109375;s:5:\"bytes\";i:1313;s:11:\"size_before\";i:854578;s:10:\"size_after\";i:853265;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.179999999999999993338661852249060757458209991455078125;s:5:\"bytes\";i:20;s:11:\"size_before\";i:11017;s:10:\"size_after\";i:10997;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:234;s:11:\"size_before\";i:67659;s:10:\"size_after\";i:67425;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4998;s:10:\"size_after\";i:4998;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.67000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:297;s:11:\"size_before\";i:44145;s:10:\"size_after\";i:43848;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126665;s:10:\"size_after\";i:126665;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196213;s:10:\"size_after\";i:196213;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:7;s:11:\"size_before\";i:15777;s:10:\"size_after\";i:15770;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:92;s:11:\"size_before\";i:69340;s:10:\"size_after\";i:69248;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.14000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:24;s:11:\"size_before\";i:17015;s:10:\"size_after\";i:16991;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:131;s:11:\"size_before\";i:24814;s:10:\"size_after\";i:24683;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.179999999999999993338661852249060757458209991455078125;s:5:\"bytes\";i:132;s:11:\"size_before\";i:73726;s:10:\"size_after\";i:73594;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22773;s:10:\"size_after\";i:22773;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:34;s:11:\"size_before\";i:95628;s:10:\"size_after\";i:95594;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.36999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:233;s:11:\"size_before\";i:63380;s:10:\"size_after\";i:63147;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:109;s:11:\"size_before\";i:21428;s:10:\"size_after\";i:21319;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(260,94,'_wp_attached_file','2021/09/Wedding_vows_No-frame2-scaled-1.jpg'),(261,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2021/09/Wedding_vows_No-frame2-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Wedding_vows_No-frame2-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Wedding_vows_No-frame2-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Wedding_vows_No-frame2-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Wedding_vows_No-frame2-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Wedding_vows_No-frame2-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"Wedding_vows_No-frame2-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Wedding_vows_No-frame2-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(262,93,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.2133471996753246724409791568177752196788787841796875;s:5:\"bytes\";i:9567;s:11:\"size_before\";i:788480;s:10:\"size_after\";i:778913;s:4:\"time\";d:1.2700000000000002398081733190338127315044403076171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7822;s:10:\"size_after\";i:7822;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:878;s:11:\"size_before\";i:59019;s:10:\"size_after\";i:58141;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4408;s:10:\"size_after\";i:4408;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:490;s:11:\"size_before\";i:36122;s:10:\"size_after\";i:35632;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:1598;s:11:\"size_before\";i:120657;s:10:\"size_after\";i:119059;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2096;s:11:\"size_before\";i:197257;s:10:\"size_after\";i:195161;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.059999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:7;s:11:\"size_before\";i:12137;s:10:\"size_after\";i:12130;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:989;s:11:\"size_before\";i:64530;s:10:\"size_after\";i:63541;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.36999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:51;s:11:\"size_before\";i:13885;s:10:\"size_after\";i:13834;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.92000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:202;s:11:\"size_before\";i:22010;s:10:\"size_after\";i:21808;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:888;s:11:\"size_before\";i:65233;s:10:\"size_after\";i:64345;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:415;s:11:\"size_before\";i:26964;s:10:\"size_after\";i:26549;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1115;s:11:\"size_before\";i:86785;s:10:\"size_after\";i:85670;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:774;s:11:\"size_before\";i:55188;s:10:\"size_after\";i:54414;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.39000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:64;s:11:\"size_before\";i:16463;s:10:\"size_after\";i:16399;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(263,95,'_wp_attached_file','2021/09/Baby-puzzle-blend-home-scaled-1.jpg'),(264,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2021/09/Baby-puzzle-blend-home-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Baby-puzzle-blend-home-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Baby-puzzle-blend-home-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Baby-puzzle-blend-home-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Baby-puzzle-blend-home-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"Baby-puzzle-blend-home-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"Baby-puzzle-blend-home-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Baby-puzzle-blend-home-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(265,94,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.711584736027026654170413166866637766361236572265625;s:5:\"bytes\";i:37435;s:11:\"size_before\";i:1380558;s:10:\"size_after\";i:1343123;s:4:\"time\";d:1.1500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:357;s:11:\"size_before\";i:13760;s:10:\"size_after\";i:13403;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:3088;s:11:\"size_before\";i:106335;s:10:\"size_after\";i:103247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5777;s:10:\"size_after\";i:5777;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1800;s:11:\"size_before\";i:65042;s:10:\"size_after\";i:63242;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:6013;s:11:\"size_before\";i:213191;s:10:\"size_after\";i:207178;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:8208;s:11:\"size_before\";i:349191;s:10:\"size_after\";i:340983;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:641;s:11:\"size_before\";i:21469;s:10:\"size_after\";i:20828;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:3308;s:11:\"size_before\";i:112629;s:10:\"size_after\";i:109321;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:594;s:11:\"size_before\";i:22855;s:10:\"size_after\";i:22261;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:978;s:11:\"size_before\";i:35674;s:10:\"size_after\";i:34696;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3352;s:11:\"size_before\";i:116487;s:10:\"size_after\";i:113135;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:800;s:11:\"size_before\";i:33362;s:10:\"size_after\";i:32562;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:4596;s:11:\"size_before\";i:155609;s:10:\"size_after\";i:151013;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2857;s:11:\"size_before\";i:99322;s:10:\"size_after\";i:96465;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:843;s:11:\"size_before\";i:29855;s:10:\"size_after\";i:29012;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(521,208,'_menu_item_type','post_type'),(522,208,'_menu_item_menu_item_parent','0'),(523,208,'_menu_item_object_id','85'),(524,208,'_menu_item_object','page'),(525,208,'_menu_item_target',''),(526,208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(527,208,'_menu_item_xfn',''),(528,208,'_menu_item_url',''),(530,209,'_menu_item_type','post_type'),(531,209,'_menu_item_menu_item_parent','213'),(532,209,'_menu_item_object_id','61'),(268,95,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.33480540610750686436603018591995351016521453857421875;s:5:\"bytes\";i:3918;s:11:\"size_before\";i:1170232;s:10:\"size_after\";i:1166314;s:4:\"time\";d:0.8600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:378;s:11:\"size_before\";i:13322;s:10:\"size_after\";i:12944;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:122;s:11:\"size_before\";i:93835;s:10:\"size_after\";i:93713;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:32;s:11:\"size_before\";i:5465;s:10:\"size_after\";i:5433;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:476;s:11:\"size_before\";i:61618;s:10:\"size_after\";i:61142;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173075;s:10:\"size_after\";i:173075;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:309;s:11:\"size_before\";i:270546;s:10:\"size_after\";i:270237;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:425;s:11:\"size_before\";i:19829;s:10:\"size_after\";i:19404;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:96;s:11:\"size_before\";i:96139;s:10:\"size_after\";i:96043;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:499;s:11:\"size_before\";i:22680;s:10:\"size_after\";i:22181;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:506;s:11:\"size_before\";i:34292;s:10:\"size_after\";i:33786;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101555;s:10:\"size_after\";i:101555;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:151;s:11:\"size_before\";i:31292;s:10:\"size_after\";i:31141;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:130532;s:10:\"size_after\";i:130532;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.419999999999999984456877655247808434069156646728515625;s:5:\"bytes\";i:366;s:11:\"size_before\";i:87121;s:10:\"size_after\";i:86755;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:558;s:11:\"size_before\";i:28931;s:10:\"size_after\";i:28373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(533,209,'_menu_item_object','page'),(534,209,'_menu_item_target',''),(535,209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(536,209,'_menu_item_xfn',''),(537,209,'_menu_item_url',''),(577,214,'_wp_page_template','default'),(576,214,'_edit_lock','1634690656:1'),(548,211,'_menu_item_type','post_type'),(549,211,'_menu_item_menu_item_parent','213'),(550,211,'_menu_item_object_id','9'),(551,211,'_menu_item_object','page'),(552,211,'_menu_item_target',''),(553,211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(554,211,'_menu_item_xfn',''),(555,211,'_menu_item_url',''),(578,214,'_et_pb_post_hide_nav','default'),(512,203,'_et_template','205'),(1260,1062,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8869839448085337085814217061852104961872100830078125;s:5:\"bytes\";i:17466;s:11:\"size_before\";i:1969145;s:10:\"size_after\";i:1951679;s:4:\"time\";d:2.20999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:671;s:11:\"size_before\";i:11566;s:10:\"size_after\";i:10895;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.65000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:473;s:11:\"size_before\";i:72253;s:10:\"size_after\";i:71780;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:671;s:11:\"size_before\";i:5751;s:10:\"size_after\";i:5080;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.67000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:489;s:11:\"size_before\";i:73017;s:10:\"size_after\";i:72528;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.289999999999999980015985556747182272374629974365234375;s:5:\"bytes\";i:441;s:11:\"size_before\";i:150929;s:10:\"size_after\";i:150488;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1499999999999999944488848768742172978818416595458984375;s:5:\"bytes\";i:386;s:11:\"size_before\";i:263330;s:10:\"size_after\";i:262944;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:718;s:11:\"size_before\";i:14353;s:10:\"size_after\";i:13635;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1048;s:11:\"size_before\";i:73039;s:10:\"size_after\";i:71991;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:733;s:11:\"size_before\";i:15566;s:10:\"size_after\";i:14833;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:769;s:11:\"size_before\";i:23119;s:10:\"size_after\";i:22350;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:661;s:11:\"size_before\";i:134646;s:10:\"size_after\";i:133985;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:681;s:11:\"size_before\";i:25277;s:10:\"size_after\";i:24596;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:6777;s:11:\"size_before\";i:363790;s:10:\"size_after\";i:357013;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:523;s:11:\"size_before\";i:186557;s:10:\"size_after\";i:186034;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.419999999999999984456877655247808434069156646728515625;s:5:\"bytes\";i:474;s:11:\"size_before\";i:112935;s:10:\"size_after\";i:112461;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:705;s:11:\"size_before\";i:33967;s:10:\"size_after\";i:33262;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:1246;s:11:\"size_before\";i:409050;s:10:\"size_after\";i:407804;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(458,196,'_wp_attached_file','2021/09/FotoOPEN-LOGO-ORG-300PX.png'),(459,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:64;s:4:\"file\";s:35:\"2021/09/FotoOPEN-LOGO-ORG-300PX.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"FotoOPEN-LOGO-ORG-300PX-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(460,196,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1860;s:10:\"size_after\";i:1860;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1860;s:10:\"size_after\";i:1860;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(461,199,'_et_pb_use_builder','on'),(462,199,'_et_pb_show_page_creation','off'),(463,199,'_et_pb_built_for_post_type','page'),(464,199,'_et_pb_enable_shortcode_tracking',''),(465,199,'_et_pb_custom_css',''),(466,199,'_et_pb_gutter_width','3'),(467,199,'_et_pb_first_image',''),(468,199,'_et_pb_truncate_post',''),(469,199,'_et_pb_truncate_post_date',''),(470,199,'_et_builder_version','VB|Divi|4.9.7'),(471,201,'_et_autogenerated_title','0'),(472,201,'_et_default','1'),(473,201,'_et_enabled','1'),(474,201,'_et_header_layout_id','0'),(475,201,'_et_header_layout_enabled','1'),(476,201,'_et_body_layout_id','0'),(477,201,'_et_body_layout_enabled','1'),(478,201,'_et_footer_layout_id','0'),(479,201,'_et_footer_layout_enabled','1'),(480,202,'_et_autogenerated_title','1'),(481,202,'_et_default','0'),(482,202,'_et_enabled','1'),(483,202,'_et_header_layout_id','0'),(484,202,'_et_header_layout_enabled','1'),(485,202,'_et_body_layout_id','199'),(486,202,'_et_body_layout_enabled','1'),(487,202,'_et_footer_layout_id','0'),(488,202,'_et_footer_layout_enabled','1'),(489,202,'_et_use_on','404'),(492,204,'_et_autogenerated_title','0'),(493,204,'_et_default','1'),(494,204,'_et_enabled','1'),(495,204,'_et_header_layout_id','0'),(496,204,'_et_header_layout_enabled','1'),(497,204,'_et_body_layout_id','0'),(498,204,'_et_body_layout_enabled','1'),(499,204,'_et_footer_layout_id','0'),(500,204,'_et_footer_layout_enabled','1'),(501,205,'_et_autogenerated_title','1'),(502,205,'_et_default','0'),(503,205,'_et_enabled','1'),(504,205,'_et_header_layout_id','0'),(505,205,'_et_header_layout_enabled','1'),(506,205,'_et_body_layout_id','199'),(507,205,'_et_body_layout_enabled','1'),(508,205,'_et_footer_layout_id','0'),(509,205,'_et_footer_layout_enabled','1'),(510,205,'_et_use_on','404'),(511,203,'_et_template','204'),(272,98,'_et_pb_use_builder','on'),(271,85,'_et_pb_show_page_creation','off'),(273,98,'_edit_last','1'),(274,98,'_edit_lock','1634690716:1'),(275,98,'_et_pb_built_for_post_type','page'),(276,98,'_et_pb_ab_subjects',''),(277,98,'_et_pb_enable_shortcode_tracking',''),(278,98,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"98\" /]'),(279,98,'_et_pb_custom_css',''),(280,98,'_et_pb_gutter_width','3'),(287,98,'_wp_page_template','default'),(282,98,'_global_colors_info','{}'),(283,98,'_et_pb_first_image',''),(284,98,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_29 et_section_regular et_pb_section--with-menu\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_21 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_4 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"88\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" alt=\"\" class=\"wp-image-1463\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu-4\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-1188 menu-item menu-item-type-post_type menu-item-object-page menu-item-1230\"><a href=\"https://flaphotography.com/products-photography/\">PRODUCTS PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_30 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_22\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_35  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">RETOUCHING SERVICES</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_31 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_1 et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">Outfit Color Change</h1>\n						\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_32 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_23\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_36  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1707\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1-1280x854.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1-980x653.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1-480x320.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-106\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Original &#8211; Red dress.</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_37  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_8\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1707\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1-1280x854.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1-980x653.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1-480x320.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-107\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">After- Dress+ purse colored green.</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_38  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_9\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1707\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-1280x854.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-980x653.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-480x320.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-108\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">After- Clored Arctic shade.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_24\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_39  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_10\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1735\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1-1280x868.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1-980x664.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1-480x325.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-110\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Original &#8211; White suit.</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_40  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_11\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1735\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1-1280x868.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1-980x664.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1-480x325.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-112\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">After- Parts colored black.</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_41  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_12\">\n				\n				\n				\n				\n				<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2560\" height=\"1735\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1-1280x868.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1-980x664.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1-480x325.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-113\" /></span></a>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">After Colored blue-Backg. Change</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_33 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_2 et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">Facial Retouch</h1>\n						\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_34 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_25\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_42  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_2  et_pb_text_align_center et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"4\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_2_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-147\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_2_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg\" title=\"After - Blemish-Removed\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-148\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; Blemish-Removed</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_2_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-154\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_2_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title=\"After - Teeth whitened, Eye iris enhanced, color correction applied\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-141\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; Teeth whitened, Eye iris enhanced, color correction applied</h3></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_26\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_43  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_3  et_pb_text_align_center et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"4\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_3_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-191\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_3_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg\" title=\"After -  Lips, finger nails colored red, iris enhanced\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-137\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211;  Lips, finger nails colored red, iris enhanced</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_3_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-134\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_3_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg\" title=\"After\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-162\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After</h3></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_27\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_44  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_4  et_pb_text_align_center et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"4\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_4_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-140\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_4_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg\" title=\"After - Dodge and Burning Applied\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-139\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; Dodge and Burning Applied</h3></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_35 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_3 et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">Background Retouch</h1>\n						\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_36 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_28\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_45  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_5  et_pb_text_align_center et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"4\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_5_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-142\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_5_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title=\"After - changed color of outfit and background\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-144\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; changed color of outfit and background</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_5_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-122\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_5_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg\" title=\"After - Tie and Background color changed\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-125\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; Tie and Background color changed</h3></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_29\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_46  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_6  et_pb_text_align_center et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"4\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_6_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x284.jpg\" alt=\"Before\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-127\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_6_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg\" title=\"After -sky background replaced and enhanced\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-126\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After -sky background replaced and enhanced</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_6_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg\" title=\"Before\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-133\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">Before</h3></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_6_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg\" title=\"After - Sunrise added\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg 479w, https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-130\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div><h3 class=\"et_pb_gallery_title\">After &#8211; Sunrise added</h3></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_38 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_30\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_47  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_30  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_32_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_32 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_33_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_33 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_34_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_34 et_pb_bg_layout_light\" href=\"https://flaphotography.com/products-photography\" data-icon=\"&#x45;\">Products Photography</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_35_wrapper  et_pb_module \">\n				<a id=\"overlay_unique_id_1483\" class=\"et_pb_button et_pb_button_35 et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">PersonalIzed Offer</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_48  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_36_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_36 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_37_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_37 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_38_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_38 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_4 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_8 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_9 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/kcj_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_49  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_5 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(285,98,'_et_pb_truncate_post_date','2022-08-21 10:43:05'),(286,98,'_et_builder_version','VB|Divi|4.17.4'),(288,98,'_et_pb_post_hide_nav','default'),(289,98,'_et_pb_page_layout','et_right_sidebar'),(290,98,'_et_pb_side_nav','off'),(291,98,'_et_pb_old_content',''),(292,98,'_yoast_wpseo_content_score','30'),(293,98,'_yoast_wpseo_estimated-reading-time-minutes',''),(294,104,'_wp_attached_file','2021/09/photographer-on-camera-BLUE-NWV.png'),(295,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2924;s:6:\"height\";i:2921;s:4:\"file\";s:43:\"2021/09/photographer-on-camera-BLUE-NWV.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-768x767.png\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-1536x1534.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1534;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-2048x2046.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2046;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"photographer-on-camera-BLUE-NWV-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-1080x1079.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1079;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"photographer-on-camera-BLUE-NWV-1280x1279.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1279;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-980x979.png\";s:5:\"width\";i:980;s:6:\"height\";i:979;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-BLUE-NWV-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(296,105,'_wp_attached_file','2021/09/photographer-on-camera-RED-NW.png'),(297,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2924;s:6:\"height\";i:2921;s:4:\"file\";s:41:\"2021/09/photographer-on-camera-RED-NW.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-768x767.png\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-1536x1534.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1534;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-2048x2046.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2046;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"photographer-on-camera-RED-NW-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-1080x1079.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1079;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"photographer-on-camera-RED-NW-1280x1279.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1279;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-980x979.png\";s:5:\"width\";i:980;s:6:\"height\";i:979;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"photographer-on-camera-RED-NW-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(298,104,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17105797;s:10:\"size_after\";i:17105797;s:4:\"time\";d:23.659999999999996589394868351519107818603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:129541;s:10:\"size_after\";i:129541;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1034378;s:10:\"size_after\";i:1034378;s:4:\"time\";d:1.810000000000000053290705182007513940334320068359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39158;s:10:\"size_after\";i:39158;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:634811;s:10:\"size_after\";i:634811;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2064648;s:10:\"size_after\";i:2064648;s:4:\"time\";d:2.649999999999999911182158029987476766109466552734375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3395635;s:10:\"size_after\";i:3395635;s:4:\"time\";d:4.69000000000000039079850466805510222911834716796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:145393;s:10:\"size_after\";i:145393;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:789427;s:10:\"size_after\";i:789427;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162796;s:10:\"size_after\";i:162796;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:258022;s:10:\"size_after\";i:258022;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1132580;s:10:\"size_after\";i:1132580;s:4:\"time\";d:2.79999999999999982236431605997495353221893310546875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:281963;s:10:\"size_after\";i:281963;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4283535;s:10:\"size_after\";i:4283535;s:4:\"time\";d:4.6500000000000003552713678800500929355621337890625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1510559;s:10:\"size_after\";i:1510559;s:4:\"time\";d:1.5800000000000000710542735760100185871124267578125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:956473;s:10:\"size_after\";i:956473;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:286878;s:10:\"size_after\";i:286878;s:4:\"time\";d:1.79000000000000003552713678800500929355621337890625;}}}'),(299,106,'_wp_attached_file','2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg'),(300,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:59:\"2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Women-red-dress_shutterstock_642298723-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Women-red-dress_shutterstock_642298723-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Women-red-dress_shutterstock_642298723-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Women-red-dress_shutterstock_642298723-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:60:\"Women-red-dress_shutterstock_642298723-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:60:\"Women-red-dress_shutterstock_642298723-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Women-red-dress_shutterstock_642298723-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(301,107,'_wp_attached_file','2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg'),(302,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Green-Change_Final-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Green-Change_Final-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Green-Change_Final-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Green-Change_Final-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Green-Change_Final-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Green-Change_Final-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Green-Change_Final-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(303,106,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.76643324704623783105716938734985888004302978515625;s:5:\"bytes\";i:23051;s:11:\"size_before\";i:1304946;s:10:\"size_after\";i:1281895;s:4:\"time\";d:1.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:189;s:11:\"size_before\";i:13605;s:10:\"size_after\";i:13416;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1404;s:11:\"size_before\";i:100048;s:10:\"size_after\";i:98644;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.409999999999999975575093458246556110680103302001953125;s:5:\"bytes\";i:26;s:11:\"size_before\";i:6349;s:10:\"size_after\";i:6323;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:953;s:11:\"size_before\";i:62189;s:10:\"size_after\";i:61236;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:3640;s:11:\"size_before\";i:198143;s:10:\"size_after\";i:194503;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7609;s:11:\"size_before\";i:331942;s:10:\"size_after\";i:324333;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:307;s:11:\"size_before\";i:20357;s:10:\"size_after\";i:20050;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1700;s:11:\"size_before\";i:103581;s:10:\"size_after\";i:101881;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:319;s:11:\"size_before\";i:22921;s:10:\"size_after\";i:22602;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:546;s:11:\"size_before\";i:35324;s:10:\"size_after\";i:34778;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1579;s:11:\"size_before\";i:108493;s:10:\"size_after\";i:106914;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:358;s:11:\"size_before\";i:34280;s:10:\"size_after\";i:33922;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:2468;s:11:\"size_before\";i:145263;s:10:\"size_after\";i:142795;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6100000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:1501;s:11:\"size_before\";i:93467;s:10:\"size_after\";i:91966;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:452;s:11:\"size_before\";i:28984;s:10:\"size_after\";i:28532;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(304,107,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.81210314223744717310182750225067138671875;s:5:\"bytes\";i:23995;s:11:\"size_before\";i:1324152;s:10:\"size_after\";i:1300157;s:4:\"time\";d:2.299999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:211;s:11:\"size_before\";i:13709;s:10:\"size_after\";i:13498;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1539;s:11:\"size_before\";i:101416;s:10:\"size_after\";i:99877;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:34;s:11:\"size_before\";i:6401;s:10:\"size_after\";i:6367;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1009;s:11:\"size_before\";i:62899;s:10:\"size_after\";i:61890;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:3796;s:11:\"size_before\";i:201284;s:10:\"size_after\";i:197488;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:8024;s:11:\"size_before\";i:338253;s:10:\"size_after\";i:330229;s:4:\"time\";d:1.2199999999999999733546474089962430298328399658203125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:290;s:11:\"size_before\";i:20476;s:10:\"size_after\";i:20186;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1778;s:11:\"size_before\";i:104996;s:10:\"size_after\";i:103218;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:370;s:11:\"size_before\";i:23109;s:10:\"size_after\";i:22739;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:536;s:11:\"size_before\";i:35598;s:10:\"size_after\";i:35062;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1689;s:11:\"size_before\";i:110002;s:10:\"size_after\";i:108313;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.93000000000000004884981308350688777863979339599609375;s:5:\"bytes\";i:323;s:11:\"size_before\";i:34803;s:10:\"size_after\";i:34480;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:2473;s:11:\"size_before\";i:147439;s:10:\"size_after\";i:144966;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1491;s:11:\"size_before\";i:94631;s:10:\"size_after\";i:93140;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:432;s:11:\"size_before\";i:29136;s:10:\"size_after\";i:28704;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(305,108,'_wp_attached_file','2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg'),(306,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Arctic-Change_Final-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"Woman-Clothed-Arctic-Change_Final-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:56:\"Woman-Clothed-Arctic-Change_Final-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Arctic-Change_Final-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Arctic-Change_Final-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Arctic-Change_Final-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Arctic-Change_Final-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(307,108,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.691697384479429189241272979415953159332275390625;s:5:\"bytes\";i:21804;s:11:\"size_before\";i:1288883;s:10:\"size_after\";i:1267079;s:4:\"time\";d:1.9000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1599999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:156;s:11:\"size_before\";i:13504;s:10:\"size_after\";i:13348;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:1342;s:11:\"size_before\";i:98957;s:10:\"size_after\";i:97615;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.25;s:5:\"bytes\";i:16;s:11:\"size_before\";i:6324;s:10:\"size_after\";i:6308;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:931;s:11:\"size_before\";i:61606;s:10:\"size_after\";i:60675;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:3604;s:11:\"size_before\";i:195598;s:10:\"size_after\";i:191994;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.229999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:7321;s:11:\"size_before\";i:327676;s:10:\"size_after\";i:320355;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:235;s:11:\"size_before\";i:20138;s:10:\"size_after\";i:19903;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1521;s:11:\"size_before\";i:102211;s:10:\"size_after\";i:100690;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:321;s:11:\"size_before\";i:22753;s:10:\"size_after\";i:22432;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:439;s:11:\"size_before\";i:34892;s:10:\"size_after\";i:34453;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:1461;s:11:\"size_before\";i:107157;s:10:\"size_after\";i:105696;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.89000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:300;s:11:\"size_before\";i:33733;s:10:\"size_after\";i:33433;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2333;s:11:\"size_before\";i:143344;s:10:\"size_after\";i:141011;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1392;s:11:\"size_before\";i:92353;s:10:\"size_after\";i:90961;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:432;s:11:\"size_before\";i:28637;s:10:\"size_after\";i:28205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(309,109,'_wp_attached_file','2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg'),(310,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Brown-Change_Final-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Brown-Change_Final-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:55:\"Woman-Clothed-Brown-Change_Final-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Brown-Change_Final-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Brown-Change_Final-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"Woman-Clothed-Brown-Change_Final-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:53:\"Woman-Clothed-Brown-Change_Final-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(311,110,'_wp_attached_file','2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg'),(312,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1735;s:4:\"file\";s:62:\"2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-1024x694.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:64:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-1536x1041.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1041;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:64:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-2048x1388.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-1080x732.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-1280x868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-980x664.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-shutterstock_1009394125-scaled-1-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(313,109,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.727831225937759729305298606050200760364532470703125;s:5:\"bytes\";i:22480;s:11:\"size_before\";i:1301053;s:10:\"size_after\";i:1278573;s:4:\"time\";d:1.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:183;s:11:\"size_before\";i:13474;s:10:\"size_after\";i:13291;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1349;s:11:\"size_before\";i:99634;s:10:\"size_after\";i:98285;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:24;s:11:\"size_before\";i:6275;s:10:\"size_after\";i:6251;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5;s:5:\"bytes\";i:931;s:11:\"size_before\";i:61886;s:10:\"size_after\";i:60955;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:3670;s:11:\"size_before\";i:197984;s:10:\"size_after\";i:194314;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:7545;s:11:\"size_before\";i:332152;s:10:\"size_after\";i:324607;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:299;s:11:\"size_before\";i:20161;s:10:\"size_after\";i:19862;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1584;s:11:\"size_before\";i:103110;s:10:\"size_after\";i:101526;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:311;s:11:\"size_before\";i:22763;s:10:\"size_after\";i:22452;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:487;s:11:\"size_before\";i:35013;s:10:\"size_after\";i:34526;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1544;s:11:\"size_before\";i:108058;s:10:\"size_after\";i:106514;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.82999999999999996003197111349436454474925994873046875;s:5:\"bytes\";i:283;s:11:\"size_before\";i:33937;s:10:\"size_after\";i:33654;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2368;s:11:\"size_before\";i:144842;s:10:\"size_after\";i:142474;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1467;s:11:\"size_before\";i:93052;s:10:\"size_after\";i:91585;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:435;s:11:\"size_before\";i:28712;s:10:\"size_after\";i:28277;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(314,111,'_wp_attached_file','2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg'),(315,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1735;s:4:\"file\";s:61:\"2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-1024x694.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-1536x1041.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1041;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:63:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-2048x1388.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-1080x732.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:62:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-1280x868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-980x664.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:61:\"Man-in-White-suit-LIGHT-RED-Color-change-scaled-1-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(316,110,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.090661976932181698174417761038057506084442138671875;s:5:\"bytes\";i:14605;s:11:\"size_before\";i:1339095;s:10:\"size_after\";i:1324490;s:4:\"time\";d:1.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:469;s:11:\"size_before\";i:17652;s:10:\"size_after\";i:17183;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1522;s:11:\"size_before\";i:109133;s:10:\"size_after\";i:107611;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:141;s:11:\"size_before\";i:7643;s:10:\"size_after\";i:7502;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1220;s:11:\"size_before\";i:72511;s:10:\"size_after\";i:71291;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1064;s:11:\"size_before\";i:192628;s:10:\"size_after\";i:191564;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0899999999999999966693309261245303787291049957275390625;s:5:\"bytes\";i:257;s:11:\"size_before\";i:286179;s:10:\"size_after\";i:285922;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:721;s:11:\"size_before\";i:26031;s:10:\"size_after\";i:25310;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1537;s:11:\"size_before\";i:111287;s:10:\"size_after\";i:109750;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:707;s:11:\"size_before\";i:28153;s:10:\"size_after\";i:27446;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:920;s:11:\"size_before\";i:42041;s:10:\"size_after\";i:41121;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1506;s:11:\"size_before\";i:117868;s:10:\"size_after\";i:116362;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1100000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:421;s:11:\"size_before\";i:37814;s:10:\"size_after\";i:37393;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1583;s:11:\"size_before\";i:150643;s:10:\"size_after\";i:149060;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1563;s:11:\"size_before\";i:103117;s:10:\"size_after\";i:101554;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:974;s:11:\"size_before\";i:36395;s:10:\"size_after\";i:35421;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(317,112,'_wp_attached_file','2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg'),(318,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1735;s:4:\"file\";s:60:\"2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-1024x694.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:62:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-1536x1041.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1041;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:62:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-2048x1388.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:61:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:61:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-1080x732.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:61:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-1280x868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-980x664.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:60:\"Man-in-White-to-BLACK-suit-Color-change-scaled-1-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(319,111,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.114168343120264470513802734785713255405426025390625;s:5:\"bytes\";i:15031;s:11:\"size_before\";i:1349078;s:10:\"size_after\";i:1334047;s:4:\"time\";d:1.3700000000000003286260152890463359653949737548828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:497;s:11:\"size_before\";i:17862;s:10:\"size_after\";i:17365;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:109817;s:10:\"size_after\";i:108378;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:159;s:11:\"size_before\";i:7758;s:10:\"size_after\";i:7599;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6599999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:1209;s:11:\"size_before\";i:72999;s:10:\"size_after\";i:71790;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1346;s:11:\"size_before\";i:194235;s:10:\"size_after\";i:192889;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1700000000000000122124532708767219446599483489990234375;s:5:\"bytes\";i:480;s:11:\"size_before\";i:288339;s:10:\"size_after\";i:287859;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:739;s:11:\"size_before\";i:26344;s:10:\"size_after\";i:25605;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1531;s:11:\"size_before\";i:112048;s:10:\"size_after\";i:110517;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:717;s:11:\"size_before\";i:28460;s:10:\"size_after\";i:27743;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:904;s:11:\"size_before\";i:42414;s:10:\"size_after\";i:41510;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1507;s:11:\"size_before\";i:118564;s:10:\"size_after\";i:117057;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:456;s:11:\"size_before\";i:38372;s:10:\"size_after\";i:37916;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1558;s:11:\"size_before\";i:151463;s:10:\"size_after\";i:149905;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:103734;s:10:\"size_after\";i:102234;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:989;s:11:\"size_before\";i:36669;s:10:\"size_after\";i:35680;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(320,113,'_wp_attached_file','2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg'),(321,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1735;s:4:\"file\";s:58:\"2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Man-in-White-suit-Background-replaced-scaled-1-1024x694.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"Man-in-White-suit-Background-replaced-scaled-1-1536x1041.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1041;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:60:\"Man-in-White-suit-Background-replaced-scaled-1-2048x1388.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:59:\"Man-in-White-suit-Background-replaced-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:59:\"Man-in-White-suit-Background-replaced-scaled-1-1080x732.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:59:\"Man-in-White-suit-Background-replaced-scaled-1-1280x868.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-980x664.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:58:\"Man-in-White-suit-Background-replaced-scaled-1-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(322,112,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.10315441847757522708661781507544219493865966796875;s:5:\"bytes\";i:14778;s:11:\"size_before\";i:1339613;s:10:\"size_after\";i:1324835;s:4:\"time\";d:1.3100000000000002753353101070388220250606536865234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:495;s:11:\"size_before\";i:17776;s:10:\"size_after\";i:17281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1454;s:11:\"size_before\";i:109106;s:10:\"size_after\";i:107652;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:159;s:11:\"size_before\";i:7729;s:10:\"size_after\";i:7570;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1187;s:11:\"size_before\";i:72570;s:10:\"size_after\";i:71383;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.63000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:192621;s:10:\"size_after\";i:191404;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:304;s:11:\"size_before\";i:285917;s:10:\"size_after\";i:285613;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:747;s:11:\"size_before\";i:26247;s:10:\"size_after\";i:25500;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:1496;s:11:\"size_before\";i:111315;s:10:\"size_after\";i:109819;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:728;s:11:\"size_before\";i:28351;s:10:\"size_after\";i:27623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:929;s:11:\"size_before\";i:42217;s:10:\"size_after\";i:41288;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.229999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1447;s:11:\"size_before\";i:117743;s:10:\"size_after\";i:116296;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:456;s:11:\"size_before\";i:37952;s:10:\"size_after\";i:37496;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1576;s:11:\"size_before\";i:150408;s:10:\"size_after\";i:148832;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1582;s:11:\"size_before\";i:103103;s:10:\"size_after\";i:101521;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1001;s:11:\"size_before\";i:36558;s:10:\"size_after\";i:35557;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(323,113,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.87714798537467064676320660510100424289703369140625;s:5:\"bytes\";i:45813;s:11:\"size_before\";i:1592306;s:10:\"size_after\";i:1546493;s:4:\"time\";d:1.36000000000000031974423109204508364200592041015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:266;s:11:\"size_before\";i:15085;s:10:\"size_after\";i:14819;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3277;s:11:\"size_before\";i:119681;s:10:\"size_after\";i:116404;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:24;s:11:\"size_before\";i:6770;s:10:\"size_after\";i:6746;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1891;s:11:\"size_before\";i:72929;s:10:\"size_after\";i:71038;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:7824;s:11:\"size_before\";i:251310;s:10:\"size_after\";i:243486;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:13738;s:11:\"size_before\";i:422799;s:10:\"size_after\";i:409061;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:535;s:11:\"size_before\";i:22929;s:10:\"size_after\";i:22394;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3177;s:11:\"size_before\";i:122455;s:10:\"size_after\";i:119278;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:537;s:11:\"size_before\";i:24980;s:10:\"size_after\";i:24443;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:865;s:11:\"size_before\";i:39279;s:10:\"size_after\";i:38414;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:3683;s:11:\"size_before\";i:132262;s:10:\"size_after\";i:128579;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:781;s:11:\"size_before\";i:38582;s:10:\"size_after\";i:37801;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:5252;s:11:\"size_before\";i:179182;s:10:\"size_after\";i:173930;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:3127;s:11:\"size_before\";i:111340;s:10:\"size_after\";i:108213;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:836;s:11:\"size_before\";i:32723;s:10:\"size_after\";i:31887;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(1157,98,'_yoast_wpseo_meta-robots-nofollow','1'),(325,98,'_et_pb_show_page_creation','off'),(356,127,'_wp_attached_file','2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg'),(357,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:855;s:4:\"file\";s:65:\"2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:66:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:66:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-980x655.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:65:\"Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-480x321.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(353,126,'_wp_attached_file','2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg'),(354,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:654;s:4:\"file\";s:53:\"2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:53:\"Wedding-couple-3-Sky-Replaced-1-980x654-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(355,126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.12364876257564118289256072102944017387926578521728515625;s:5:\"bytes\";i:198;s:11:\"size_before\";i:160131;s:10:\"size_after\";i:159933;s:4:\"time\";d:0.1999999999999999833466546306226518936455249786376953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10891;s:10:\"size_after\";i:10891;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4913;s:10:\"size_after\";i:4913;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:151;s:11:\"size_before\";i:43635;s:10:\"size_after\";i:43484;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15590;s:10:\"size_after\";i:15590;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16853;s:10:\"size_after\";i:16853;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.190000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:46;s:11:\"size_before\";i:24584;s:10:\"size_after\";i:24538;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22464;s:10:\"size_after\";i:22464;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:1;s:11:\"size_before\";i:21201;s:10:\"size_after\";i:21200;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(352,125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9281664768478936622386754606850445270538330078125;s:5:\"bytes\";i:2942;s:11:\"size_before\";i:316969;s:10:\"size_after\";i:314027;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7694;s:10:\"size_after\";i:7694;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:600;s:11:\"size_before\";i:57394;s:10:\"size_after\";i:56794;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4340;s:10:\"size_after\";i:4340;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:408;s:11:\"size_before\";i:35567;s:10:\"size_after\";i:35159;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11953;s:10:\"size_after\";i:11953;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.25;s:5:\"bytes\";i:850;s:11:\"size_before\";i:67966;s:10:\"size_after\";i:67116;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13659;s:10:\"size_after\";i:13659;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:134;s:11:\"size_before\";i:21646;s:10:\"size_after\";i:21512;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:334;s:11:\"size_before\";i:26399;s:10:\"size_after\";i:26065;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:609;s:11:\"size_before\";i:54074;s:10:\"size_after\";i:53465;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:7;s:11:\"size_before\";i:16277;s:10:\"size_after\";i:16270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(439,160,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.260122710639507648266999240149743854999542236328125;s:5:\"bytes\";i:6870;s:11:\"size_before\";i:545185;s:10:\"size_after\";i:538315;s:4:\"time\";d:0.2499999999999999722444243843710864894092082977294921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:69;s:11:\"size_before\";i:11586;s:10:\"size_after\";i:11517;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1114;s:11:\"size_before\";i:86258;s:10:\"size_after\";i:85144;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5278;s:10:\"size_after\";i:5278;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:746;s:11:\"size_before\";i:53459;s:10:\"size_after\";i:52713;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5;s:5:\"bytes\";i:87;s:11:\"size_before\";i:17237;s:10:\"size_after\";i:17150;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1234;s:11:\"size_before\";i:88506;s:10:\"size_after\";i:87272;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.75;s:5:\"bytes\";i:144;s:11:\"size_before\";i:19200;s:10:\"size_after\";i:19056;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.84999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:251;s:11:\"size_before\";i:29675;s:10:\"size_after\";i:29424;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1382;s:11:\"size_before\";i:95046;s:10:\"size_after\";i:93664;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:634;s:11:\"size_before\";i:34250;s:10:\"size_after\";i:33616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1019;s:11:\"size_before\";i:80369;s:10:\"size_after\";i:79350;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:190;s:11:\"size_before\";i:24321;s:10:\"size_after\";i:24131;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(350,125,'_wp_attached_file','2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg'),(351,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:690;s:4:\"file\";s:50:\"2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-1024x654.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-980x626.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:50:\"Man-in-Bow-Tie-Suit-3-Red-Background-1-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(437,160,'_wp_attached_file','2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg'),(438,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:57:\"2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Idian-Woman-shutterstock_195036215-1280x854-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:58:\"Idian-Woman-shutterstock_195036215-1280x854-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:58:\"Idian-Woman-shutterstock_195036215-1280x854-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-shutterstock_195036215-1280x854-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(440,161,'_wp_attached_file','2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg'),(346,123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.78284724829974539073162986824172548949718475341796875;s:5:\"bytes\";i:1501;s:11:\"size_before\";i:191736;s:10:\"size_after\";i:190235;s:4:\"time\";d:0.149999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7707;s:10:\"size_after\";i:7707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4339;s:10:\"size_after\";i:4339;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0700000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:380;s:11:\"size_before\";i:35644;s:10:\"size_after\";i:35264;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12001;s:10:\"size_after\";i:12001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13670;s:10:\"size_after\";i:13670;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.8000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:175;s:11:\"size_before\";i:21782;s:10:\"size_after\";i:21607;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:387;s:11:\"size_before\";i:26466;s:10:\"size_after\";i:26079;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:559;s:11:\"size_before\";i:53812;s:10:\"size_after\";i:53253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16315;s:10:\"size_after\";i:16315;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(345,122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.61212997735402663312953563945484347641468048095703125;s:5:\"bytes\";i:1511;s:11:\"size_before\";i:246843;s:10:\"size_after\";i:245332;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7763;s:10:\"size_after\";i:7763;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4160;s:10:\"size_after\";i:4160;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.63000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:219;s:11:\"size_before\";i:35037;s:10:\"size_after\";i:34818;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11648;s:10:\"size_after\";i:11648;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:704;s:11:\"size_before\";i:61220;s:10:\"size_after\";i:60516;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12899;s:10:\"size_after\";i:12899;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.14000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:29;s:11:\"size_before\";i:20331;s:10:\"size_after\";i:20302;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.93000000000000004884981308350688777863979339599609375;s:5:\"bytes\";i:233;s:11:\"size_before\";i:25077;s:10:\"size_after\";i:24844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:326;s:11:\"size_before\";i:52726;s:10:\"size_after\";i:52400;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15982;s:10:\"size_after\";i:15982;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(341,122,'_wp_attached_file','2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg'),(342,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:55:\"2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Man-in-Bow-Tie-Suit-shutterstock_1141300148-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(343,123,'_wp_attached_file','2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg'),(344,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:654;s:4:\"file\";s:49:\"2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-980x626.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:49:\"Man-in-Brown-Bow-Tie-Suit-Red-Backg-1-480x307.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(358,127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.92957145509103156211239138428936712443828582763671875;s:5:\"bytes\";i:3355;s:11:\"size_before\";i:360919;s:10:\"size_after\";i:357564;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9003;s:10:\"size_after\";i:9003;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:630;s:11:\"size_before\";i:55935;s:10:\"size_after\";i:55305;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4053;s:10:\"size_after\";i:4053;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:446;s:11:\"size_before\";i:36587;s:10:\"size_after\";i:36141;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.25;s:5:\"bytes\";i:32;s:11:\"size_before\";i:13021;s:10:\"size_after\";i:12989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.89000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:513;s:11:\"size_before\";i:57572;s:10:\"size_after\";i:57059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.309999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:43;s:11:\"size_before\";i:13892;s:10:\"size_after\";i:13849;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.92000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:187;s:11:\"size_before\";i:20217;s:10:\"size_after\";i:20030;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:696;s:11:\"size_before\";i:61303;s:10:\"size_after\";i:60607;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18735;s:10:\"size_after\";i:18735;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:701;s:11:\"size_before\";i:52527;s:10:\"size_after\";i:51826;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:107;s:11:\"size_before\";i:18074;s:10:\"size_after\";i:17967;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(362,129,'_wp_attached_file','2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg'),(363,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:61:\"2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:62:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:61:\"Sun-Brighter-2-light-black-man-reading-1024x682-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(364,129,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.690395563634350395432193181477487087249755859375;s:5:\"bytes\";i:5496;s:11:\"size_before\";i:325131;s:10:\"size_after\";i:319635;s:4:\"time\";d:0.350000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:80;s:11:\"size_before\";i:11198;s:10:\"size_after\";i:11118;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5083;s:10:\"size_after\";i:5083;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:880;s:11:\"size_before\";i:48165;s:10:\"size_after\";i:47285;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.89000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:142;s:11:\"size_before\";i:15977;s:10:\"size_after\";i:15835;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1773;s:11:\"size_before\";i:81364;s:10:\"size_after\";i:79591;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:270;s:11:\"size_before\";i:17909;s:10:\"size_after\";i:17639;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:414;s:11:\"size_before\";i:26728;s:10:\"size_after\";i:26314;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:177;s:11:\"size_before\";i:23966;s:10:\"size_after\";i:23789;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1397;s:11:\"size_before\";i:71931;s:10:\"size_after\";i:70534;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:363;s:11:\"size_before\";i:22810;s:10:\"size_after\";i:22447;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(365,130,'_wp_attached_file','2021/09/Sun-light-black-man-reading-After-980x653-1.jpg'),(366,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:653;s:4:\"file\";s:55:\"2021/09/Sun-light-black-man-reading-After-980x653-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Sun-light-black-man-reading-After-980x653-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(367,130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.285827636055346001597854410647414624691009521484375;s:5:\"bytes\";i:2366;s:11:\"size_before\";i:184006;s:10:\"size_after\";i:181640;s:4:\"time\";d:0.1299999999999999766853164828717126511037349700927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:114;s:11:\"size_before\";i:11647;s:10:\"size_after\";i:11533;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5427;s:10:\"size_after\";i:5427;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:925;s:11:\"size_before\";i:51710;s:10:\"size_after\";i:50785;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:218;s:11:\"size_before\";i:16932;s:10:\"size_after\";i:16714;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:288;s:11:\"size_before\";i:19072;s:10:\"size_after\";i:18784;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:302;s:11:\"size_before\";i:28746;s:10:\"size_after\";i:28444;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:143;s:11:\"size_before\";i:26355;s:10:\"size_after\";i:26212;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:376;s:11:\"size_before\";i:24117;s:10:\"size_after\";i:23741;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(368,131,'_wp_attached_file','2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg'),(369,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:68:\"2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:69:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:68:\"Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(370,131,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1686615552448411659014482211205177009105682373046875;s:5:\"bytes\";i:3803;s:11:\"size_before\";i:325415;s:10:\"size_after\";i:321612;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9573;s:10:\"size_after\";i:9573;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4870;s:10:\"size_after\";i:4870;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:524;s:11:\"size_before\";i:46583;s:10:\"size_after\";i:46059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14285;s:10:\"size_after\";i:14285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1323;s:11:\"size_before\";i:85024;s:10:\"size_after\";i:83701;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5;s:5:\"bytes\";i:81;s:11:\"size_before\";i:16227;s:10:\"size_after\";i:16146;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:306;s:11:\"size_before\";i:26088;s:10:\"size_after\";i:25782;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:650;s:11:\"size_before\";i:30390;s:10:\"size_after\";i:29740;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:819;s:11:\"size_before\";i:72039;s:10:\"size_after\";i:71220;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:100;s:11:\"size_before\";i:20336;s:10:\"size_after\";i:20236;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(371,132,'_wp_attached_file','2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg'),(372,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:653;s:4:\"file\";s:52:\"2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"Eye-IRIS-Hair-MAG-Before-Woman-980x653-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(373,132,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1444233929751186362722137346281670033931732177734375;s:5:\"bytes\";i:2096;s:11:\"size_before\";i:183149;s:10:\"size_after\";i:181053;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10203;s:10:\"size_after\";i:10203;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5085;s:10:\"size_after\";i:5085;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:596;s:11:\"size_before\";i:50502;s:10:\"size_after\";i:49906;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:76;s:11:\"size_before\";i:15621;s:10:\"size_after\";i:15545;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.67000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:118;s:11:\"size_before\";i:17558;s:10:\"size_after\";i:17440;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:365;s:11:\"size_before\";i:28372;s:10:\"size_after\";i:28007;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:754;s:11:\"size_before\";i:33643;s:10:\"size_after\";i:32889;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.83999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:187;s:11:\"size_before\";i:22165;s:10:\"size_after\";i:21978;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(374,133,'_wp_attached_file','2021/09/black-man-reading-pixaba-before-1024x682-1.jpg'),(375,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:54:\"2021/09/black-man-reading-pixaba-before-1024x682-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"black-man-reading-pixaba-before-1024x682-1-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:54:\"black-man-reading-pixaba-before-1024x682-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(376,133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6273376559640178040666569359018467366695404052734375;s:5:\"bytes\";i:5637;s:11:\"size_before\";i:346394;s:10:\"size_after\";i:340757;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:131;s:11:\"size_before\";i:11564;s:10:\"size_after\";i:11433;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5422;s:10:\"size_after\";i:5422;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:973;s:11:\"size_before\";i:51369;s:10:\"size_after\";i:50396;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:203;s:11:\"size_before\";i:16768;s:10:\"size_after\";i:16565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:86759;s:10:\"size_after\";i:84958;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:295;s:11:\"size_before\";i:18969;s:10:\"size_after\";i:18674;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:374;s:11:\"size_before\";i:28575;s:10:\"size_after\";i:28201;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.68000000000000004884981308350688777863979339599609375;s:5:\"bytes\";i:179;s:11:\"size_before\";i:26360;s:10:\"size_after\";i:26181;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1332;s:11:\"size_before\";i:76712;s:10:\"size_after\";i:75380;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:349;s:11:\"size_before\";i:23896;s:10:\"size_after\";i:23547;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(377,134,'_wp_attached_file','2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg'),(378,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:980;s:4:\"file\";s:51:\"2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-980x675.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Woman-in-flowers-2-MAG-Before-980x980-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(379,134,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.410678432835228701680563290210557170212268829345703125;s:5:\"bytes\";i:1035;s:11:\"size_before\";i:252022;s:10:\"size_after\";i:250987;s:4:\"time\";d:0.2100000000000000477395900588817312382161617279052734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:16;s:11:\"size_before\";i:13538;s:10:\"size_after\";i:13522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4854;s:10:\"size_after\";i:4854;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:316;s:11:\"size_before\";i:60926;s:10:\"size_after\";i:60610;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13591;s:10:\"size_after\";i:13591;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.440000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:293;s:11:\"size_before\";i:66613;s:10:\"size_after\";i:66320;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15479;s:10:\"size_after\";i:15479;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:131;s:11:\"size_before\";i:24118;s:10:\"size_after\";i:23987;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:121;s:11:\"size_before\";i:24609;s:10:\"size_after\";i:24488;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:158;s:11:\"size_before\";i:28294;s:10:\"size_after\";i:28136;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(380,135,'_wp_attached_file','2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg'),(381,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:675;s:4:\"file\";s:70:\"2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-980x613.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(382,135,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.7413810206602999830494127309066243469715118408203125;s:5:\"bytes\";i:7724;s:11:\"size_before\";i:443556;s:10:\"size_after\";i:435832;s:4:\"time\";d:0.2400000000000000188737914186276611872017383575439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:261;s:11:\"size_before\";i:12598;s:10:\"size_after\";i:12337;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1289;s:11:\"size_before\";i:81366;s:10:\"size_after\";i:80077;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5376;s:10:\"size_after\";i:5376;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:951;s:11:\"size_before\";i:52198;s:10:\"size_after\";i:51247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:427;s:11:\"size_before\";i:19399;s:10:\"size_after\";i:18972;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:93191;s:10:\"size_after\";i:91514;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:456;s:11:\"size_before\";i:20539;s:10:\"size_after\";i:20083;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:465;s:11:\"size_before\";i:30376;s:10:\"size_after\";i:29911;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:213;s:11:\"size_before\";i:26285;s:10:\"size_after\";i:26072;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1450;s:11:\"size_before\";i:76709;s:10:\"size_after\";i:75259;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:535;s:11:\"size_before\";i:25519;s:10:\"size_after\";i:24984;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(383,136,'_wp_attached_file','2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg'),(384,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:69:\"2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:69:\"Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(385,136,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6486960080835986186542641007690690457820892333984375;s:5:\"bytes\";i:19335;s:11:\"size_before\";i:1172745;s:10:\"size_after\";i:1153410;s:4:\"time\";d:0.6500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:671;s:11:\"size_before\";i:20028;s:10:\"size_after\";i:19357;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:2390;s:11:\"size_before\";i:129704;s:10:\"size_after\";i:127314;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:183;s:11:\"size_before\";i:6931;s:10:\"size_after\";i:6748;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1748;s:11:\"size_before\";i:82910;s:10:\"size_after\";i:81162;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.92000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:2277;s:11:\"size_before\";i:248468;s:10:\"size_after\";i:246191;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:465;s:11:\"size_before\";i:19499;s:10:\"size_after\";i:19034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:1432;s:11:\"size_before\";i:89903;s:10:\"size_after\";i:88471;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:544;s:11:\"size_before\";i:21890;s:10:\"size_after\";i:21346;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:794;s:11:\"size_before\";i:33458;s:10:\"size_after\";i:32664;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2298;s:11:\"size_before\";i:140690;s:10:\"size_after\";i:138392;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:901;s:11:\"size_before\";i:34999;s:10:\"size_after\";i:34098;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2247;s:11:\"size_before\";i:181818;s:10:\"size_after\";i:179571;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:2270;s:11:\"size_before\";i:121948;s:10:\"size_after\";i:119678;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:1115;s:11:\"size_before\";i:40499;s:10:\"size_after\";i:39384;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(386,137,'_wp_attached_file','2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg'),(387,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:59:\"2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:60:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-2048x1800.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:61:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:59:\"Red-Lips-fingers-Woman-with-flowers-2048x2048-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(388,137,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.019181337914465412808340261108241975307464599609375;s:5:\"bytes\";i:19726;s:11:\"size_before\";i:1935475;s:10:\"size_after\";i:1915749;s:4:\"time\";d:1.220000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:620;s:11:\"size_before\";i:20327;s:10:\"size_after\";i:19707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2241;s:11:\"size_before\";i:132256;s:10:\"size_after\";i:130015;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:142;s:11:\"size_before\";i:6935;s:10:\"size_after\";i:6793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1753;s:11:\"size_before\";i:85152;s:10:\"size_after\";i:83399;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1513;s:11:\"size_before\";i:245649;s:10:\"size_after\";i:244136;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.14000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:550;s:11:\"size_before\";i:391152;s:10:\"size_after\";i:390602;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:476;s:11:\"size_before\";i:19964;s:10:\"size_after\";i:19488;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:1472;s:11:\"size_before\";i:92334;s:10:\"size_after\";i:90862;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:519;s:11:\"size_before\";i:22354;s:10:\"size_after\";i:21835;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:792;s:11:\"size_before\";i:34355;s:10:\"size_after\";i:33563;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2219;s:11:\"size_before\";i:144284;s:10:\"size_after\";i:142065;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:808;s:11:\"size_before\";i:35702;s:10:\"size_after\";i:34894;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.440000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:352628;s:10:\"size_after\";i:351085;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:1;s:5:\"bytes\";i:1867;s:11:\"size_before\";i:186236;s:10:\"size_after\";i:184369;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2130;s:11:\"size_before\";i:124822;s:10:\"size_after\";i:122692;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1081;s:11:\"size_before\";i:41325;s:10:\"size_after\";i:40244;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(392,139,'_wp_attached_file','2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg'),(393,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:57:\"2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:58:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:59:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:57:\"Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(394,139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.35952142371939910248102023615501821041107177734375;s:5:\"bytes\";i:46465;s:11:\"size_before\";i:1065828;s:10:\"size_after\";i:1019363;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:22973;s:10:\"size_after\";i:21970;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:8648;s:11:\"size_before\";i:197763;s:10:\"size_after\";i:189115;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:170;s:11:\"size_before\";i:7051;s:10:\"size_after\";i:6881;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5320;s:11:\"size_before\";i:118544;s:10:\"size_after\";i:113224;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:846;s:11:\"size_before\";i:22641;s:10:\"size_after\";i:21795;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5649;s:11:\"size_before\";i:130713;s:10:\"size_after\";i:125064;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:25818;s:10:\"size_after\";i:24794;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1712;s:11:\"size_before\";i:41778;s:10:\"size_after\";i:40066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9784;s:11:\"size_before\";i:219175;s:10:\"size_after\";i:209391;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1668;s:11:\"size_before\";i:42425;s:10:\"size_after\";i:40757;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:8410;s:11:\"size_before\";i:185846;s:10:\"size_after\";i:177436;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2231;s:11:\"size_before\";i:51101;s:10:\"size_after\";i:48870;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(395,140,'_wp_attached_file','2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg'),(396,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:55:\"2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Beautiful-Black-GIRL-Before-Mag-1536x1536-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(397,140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1074751000093083774800106766633689403533935546875;s:5:\"bytes\";i:73250;s:11:\"size_before\";i:1783334;s:10:\"size_after\";i:1710084;s:4:\"time\";d:0.760000000000000230926389122032560408115386962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1007;s:11:\"size_before\";i:23045;s:10:\"size_after\";i:22038;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8946;s:11:\"size_before\";i:199058;s:10:\"size_after\";i:190112;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:180;s:11:\"size_before\";i:7044;s:10:\"size_after\";i:6864;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5169;s:11:\"size_before\";i:116579;s:10:\"size_after\";i:111410;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:13846;s:11:\"size_before\";i:419432;s:10:\"size_after\";i:405586;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:834;s:11:\"size_before\";i:22680;s:10:\"size_after\";i:21846;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:5883;s:11:\"size_before\";i:131637;s:10:\"size_after\";i:125754;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:25875;s:10:\"size_after\";i:24867;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1729;s:11:\"size_before\";i:41720;s:10:\"size_after\";i:39991;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9977;s:11:\"size_before\";i:220877;s:10:\"size_after\";i:210900;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1708;s:11:\"size_before\";i:42558;s:10:\"size_after\";i:40850;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:12128;s:11:\"size_before\";i:294952;s:10:\"size_after\";i:282824;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:8602;s:11:\"size_before\";i:186740;s:10:\"size_after\";i:178138;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2233;s:11:\"size_before\";i:51137;s:10:\"size_after\";i:48904;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(398,141,'_wp_attached_file','2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg'),(399,141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:76:\"2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:71:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:70:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:70:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:71:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:70:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:69:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:61:\"Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected.jpg\";}'),(400,141,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.09613731309753603682111133821308612823486328125;s:5:\"bytes\";i:131404;s:11:\"size_before\";i:1851768;s:10:\"size_after\";i:1720364;s:4:\"time\";d:1.130000000000000337507799486047588288784027099609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.5;s:5:\"bytes\";i:9243;s:11:\"size_before\";i:23401;s:10:\"size_after\";i:14158;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8493;s:11:\"size_before\";i:102608;s:10:\"size_after\";i:94115;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:9196;s:11:\"size_before\";i:16085;s:10:\"size_after\";i:6889;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8900;s:11:\"size_before\";i:67916;s:10:\"size_after\";i:59016;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7571;s:11:\"size_before\";i:189744;s:10:\"size_after\";i:182173;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9699999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:5982;s:11:\"size_before\";i:303422;s:10:\"size_after\";i:297440;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9202;s:11:\"size_before\";i:29663;s:10:\"size_after\";i:20461;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8415;s:11:\"size_before\";i:103990;s:10:\"size_after\";i:95575;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.75;s:5:\"bytes\";i:9281;s:11:\"size_before\";i:32278;s:10:\"size_after\";i:22997;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:9318;s:11:\"size_before\";i:43873;s:10:\"size_after\";i:34555;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:8323;s:11:\"size_before\";i:110047;s:10:\"size_after\";i:101724;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9441;s:11:\"size_before\";i:48294;s:10:\"size_after\";i:38853;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.450000000000000011102230246251565404236316680908203125;s:5:\"bytes\";i:2246;s:11:\"size_before\";i:503904;s:10:\"size_after\";i:501658;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7971;s:11:\"size_before\";i:142786;s:10:\"size_after\";i:134815;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:8532;s:11:\"size_before\";i:96063;s:10:\"size_after\";i:87531;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9290;s:11:\"size_before\";i:37694;s:10:\"size_after\";i:28404;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(401,142,'_wp_attached_file','2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg'),(402,142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:76:\"2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:70:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:71:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:70:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:70:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:71:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:70:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-1280x800.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-980x613.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:69:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:61:\"Black-man-fashion-Green-hutterstock_405569032-2880x1800-1.jpg\";}'),(403,142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.57003173593910361205416847951710224151611328125;s:5:\"bytes\";i:25285;s:11:\"size_before\";i:1610477;s:10:\"size_after\";i:1585192;s:4:\"time\";d:1.180000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.440000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:49;s:11:\"size_before\";i:11066;s:10:\"size_after\";i:11017;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1025;s:11:\"size_before\";i:80786;s:10:\"size_after\";i:79761;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5792;s:10:\"size_after\";i:5792;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:665;s:11:\"size_before\";i:50096;s:10:\"size_after\";i:49431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1883;s:11:\"size_before\";i:159429;s:10:\"size_after\";i:157546;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3863;s:11:\"size_before\";i:264573;s:10:\"size_after\";i:260710;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.92000000000000003996802888650563545525074005126953125;s:5:\"bytes\";i:159;s:11:\"size_before\";i:17347;s:10:\"size_after\";i:17188;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1069;s:11:\"size_before\";i:88760;s:10:\"size_after\";i:87691;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:221;s:11:\"size_before\";i:19174;s:10:\"size_after\";i:18953;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:319;s:11:\"size_before\";i:29329;s:10:\"size_after\";i:29010;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:87691;s:10:\"size_after\";i:87691;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:388;s:11:\"size_before\";i:31410;s:10:\"size_after\";i:31022;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:12908;s:11:\"size_before\";i:548836;s:10:\"size_after\";i:535928;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1384;s:11:\"size_before\";i:116958;s:10:\"size_after\";i:115574;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:1020;s:11:\"size_before\";i:75973;s:10:\"size_after\";i:74953;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:332;s:11:\"size_before\";i:23257;s:10:\"size_after\";i:22925;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(406,144,'_wp_attached_file','2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg'),(443,162,'_wp_attached_file','2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg'),(444,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:70:\"2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:71:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-2560x1800.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:72:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:70:\"Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(445,162,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2043398866990171203195103544203448109328746795654296875;s:5:\"bytes\";i:3018;s:11:\"size_before\";i:1476951;s:10:\"size_after\";i:1473933;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:72;s:11:\"size_before\";i:13752;s:10:\"size_after\";i:13680;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.440000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:437;s:11:\"size_before\";i:98833;s:10:\"size_after\";i:98396;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4943;s:10:\"size_after\";i:4943;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:451;s:11:\"size_before\";i:61861;s:10:\"size_after\";i:61410;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:189171;s:10:\"size_after\";i:189171;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.059999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:162;s:11:\"size_before\";i:292891;s:10:\"size_after\";i:292729;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.39000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:54;s:11:\"size_before\";i:13999;s:10:\"size_after\";i:13945;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2200000000000000011102230246251565404236316680908203125;s:5:\"bytes\";i:153;s:11:\"size_before\";i:69158;s:10:\"size_after\";i:69005;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:87;s:11:\"size_before\";i:15893;s:10:\"size_after\";i:15806;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:200;s:11:\"size_before\";i:24604;s:10:\"size_after\";i:24404;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:438;s:11:\"size_before\";i:108247;s:10:\"size_after\";i:107809;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.75;s:5:\"bytes\";i:189;s:11:\"size_before\";i:25216;s:10:\"size_after\";i:25027;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295604;s:10:\"size_after\";i:295604;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:141043;s:10:\"size_after\";i:141043;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:519;s:11:\"size_before\";i:93082;s:10:\"size_after\";i:92563;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.89000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:256;s:11:\"size_before\";i:28654;s:10:\"size_after\";i:28398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(408,144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:71:\"2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:65:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:66:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-2048x1280.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:65:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:65:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:66:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:65:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1280x800.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-980x613.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:64:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:56:\"Black-man-fashion-Green-Clothe-retouched-2880x1800-1.jpg\";}'),(409,144,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.492813690754729361032104861806146800518035888671875;s:5:\"bytes\";i:48477;s:11:\"size_before\";i:1944670;s:10:\"size_after\";i:1896193;s:4:\"time\";d:0.69000000000000005773159728050814010202884674072265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:177;s:11:\"size_before\";i:12533;s:10:\"size_after\";i:12356;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1585;s:11:\"size_before\";i:94104;s:10:\"size_after\";i:92519;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6142;s:10:\"size_after\";i:6142;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1018;s:11:\"size_before\";i:58456;s:10:\"size_after\";i:57438;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:3903;s:11:\"size_before\";i:188562;s:10:\"size_after\";i:184659;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:8304;s:11:\"size_before\";i:319394;s:10:\"size_after\";i:311090;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5700000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:314;s:11:\"size_before\";i:19973;s:10:\"size_after\";i:19659;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1872;s:11:\"size_before\";i:103701;s:10:\"size_after\";i:101829;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:402;s:11:\"size_before\";i:22151;s:10:\"size_after\";i:21749;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:550;s:11:\"size_before\";i:33796;s:10:\"size_after\";i:33246;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101829;s:10:\"size_after\";i:101829;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:483;s:11:\"size_before\";i:32988;s:10:\"size_after\";i:32505;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:25405;s:11:\"size_before\";i:698389;s:10:\"size_after\";i:672984;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2512;s:11:\"size_before\";i:137509;s:10:\"size_after\";i:134997;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1477;s:11:\"size_before\";i:88376;s:10:\"size_after\";i:86899;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:475;s:11:\"size_before\";i:26767;s:10:\"size_after\";i:26292;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(413,146,'_wp_attached_file','2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg'),(414,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:4:\"file\";s:46:\"2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Wedding_vows_No-frame2-1536x1024-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Wedding_vows_No-frame2-1536x1024-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Wedding_vows_No-frame2-1536x1024-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Wedding_vows_No-frame2-1536x1024-1-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"Wedding_vows_No-frame2-1536x1024-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(415,146,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.77346108543091585119100273004733026027679443359375;s:5:\"bytes\";i:22416;s:11:\"size_before\";i:808232;s:10:\"size_after\";i:785816;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:357;s:11:\"size_before\";i:13714;s:10:\"size_after\";i:13357;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3124;s:11:\"size_before\";i:105422;s:10:\"size_after\";i:102298;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5781;s:10:\"size_after\";i:5781;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1634;s:11:\"size_before\";i:63662;s:10:\"size_after\";i:62028;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:611;s:11:\"size_before\";i:21306;s:10:\"size_after\";i:20695;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:3192;s:11:\"size_before\";i:111286;s:10:\"size_after\";i:108094;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:543;s:11:\"size_before\";i:22691;s:10:\"size_after\";i:22148;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:934;s:11:\"size_before\";i:35325;s:10:\"size_after\";i:34391;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:3309;s:11:\"size_before\";i:115279;s:10:\"size_after\";i:111970;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:794;s:11:\"size_before\";i:33031;s:10:\"size_after\";i:32237;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:4291;s:11:\"size_before\";i:152483;s:10:\"size_after\";i:148192;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2763;s:11:\"size_before\";i:98527;s:10:\"size_after\";i:95764;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:864;s:11:\"size_before\";i:29725;s:10:\"size_after\";i:28861;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(416,147,'_wp_attached_file','2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg'),(417,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:64:\"2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:66:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:66:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:65:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:65:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:65:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:64:\"Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(418,147,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.00784365357383469234686668158929023775272071361541748046875;s:5:\"bytes\";i:56;s:11:\"size_before\";i:713953;s:10:\"size_after\";i:713897;s:4:\"time\";d:0.490000000000000046629367034256574697792530059814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8463;s:10:\"size_after\";i:8463;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54403;s:10:\"size_after\";i:54403;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4800;s:10:\"size_after\";i:4800;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34260;s:10:\"size_after\";i:34260;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:105339;s:10:\"size_after\";i:105339;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:171261;s:10:\"size_after\";i:171261;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12443;s:10:\"size_after\";i:12443;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56991;s:10:\"size_after\";i:56991;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13805;s:10:\"size_after\";i:13805;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21050;s:10:\"size_after\";i:21050;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59054;s:10:\"size_after\";i:59054;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2200000000000000011102230246251565404236316680908203125;s:5:\"bytes\";i:56;s:11:\"size_before\";i:25760;s:10:\"size_after\";i:25704;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78723;s:10:\"size_after\";i:78723;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50855;s:10:\"size_after\";i:50855;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16746;s:10:\"size_after\";i:16746;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(419,148,'_wp_attached_file','2021/09/Blemish-Removed-After-scaled.jpg'),(420,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2021/09/Blemish-Removed-After-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Blemish-Removed-After-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Blemish-Removed-After-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"Blemish-Removed-After-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Blemish-Removed-After-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"Blemish-Removed-After-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Blemish-Removed-After-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"Blemish-Removed-After-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Blemish-Removed-After-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:25:\"Blemish-Removed-After.jpg\";}'),(421,148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.65493860789278190992490635835565626621246337890625;s:5:\"bytes\";i:105244;s:11:\"size_before\";i:1374851;s:10:\"size_after\";i:1269607;s:4:\"time\";d:1.0800000000000002930988785010413266718387603759765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:7806;s:11:\"size_before\";i:18592;s:10:\"size_after\";i:10786;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6900;s:11:\"size_before\";i:74870;s:10:\"size_after\";i:67970;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7899;s:11:\"size_before\";i:13875;s:10:\"size_after\";i:5976;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7199;s:11:\"size_before\";i:50377;s:10:\"size_after\";i:43178;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5842;s:11:\"size_before\";i:136129;s:10:\"size_after\";i:130287;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:4162;s:11:\"size_before\";i:218125;s:10:\"size_after\";i:213963;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.659999999999996589394868351519107818603515625;s:5:\"bytes\";i:7674;s:11:\"size_before\";i:23497;s:10:\"size_after\";i:15823;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6983;s:11:\"size_before\";i:77466;s:10:\"size_after\";i:70483;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.5;s:5:\"bytes\";i:7711;s:11:\"size_before\";i:25286;s:10:\"size_after\";i:17575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7571;s:11:\"size_before\";i:34063;s:10:\"size_after\";i:26492;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:6823;s:11:\"size_before\";i:80260;s:10:\"size_after\";i:73437;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7665;s:11:\"size_before\";i:39668;s:10:\"size_after\";i:32003;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:380683;s:10:\"size_after\";i:380683;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:6435;s:11:\"size_before\";i:102934;s:10:\"size_after\";i:96499;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:6990;s:11:\"size_before\";i:70204;s:10:\"size_after\";i:63214;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:7584;s:11:\"size_before\";i:28822;s:10:\"size_after\";i:21238;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(422,149,'_wp_attached_file','2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg'),(423,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:4:\"file\";s:52:\"2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"beautiful-woman_RED-2-Sunset-1536x1024-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"beautiful-woman_RED-2-Sunset-1536x1024-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"beautiful-woman_RED-2-Sunset-1536x1024-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"beautiful-woman_RED-2-Sunset-1536x1024-1-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_RED-2-Sunset-1536x1024-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(424,149,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.67798874489816274291342779179103672504425048828125;s:5:\"bytes\";i:10940;s:11:\"size_before\";i:651971;s:10:\"size_after\";i:641031;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:118;s:11:\"size_before\";i:11672;s:10:\"size_after\";i:11554;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:1531;s:11:\"size_before\";i:84055;s:10:\"size_after\";i:82524;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5286;s:10:\"size_after\";i:5286;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:996;s:11:\"size_before\";i:51925;s:10:\"size_after\";i:50929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:266;s:11:\"size_before\";i:17604;s:10:\"size_after\";i:17338;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:87863;s:10:\"size_after\";i:86439;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9699999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:383;s:11:\"size_before\";i:19423;s:10:\"size_after\";i:19040;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:568;s:11:\"size_before\";i:29881;s:10:\"size_after\";i:29313;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1563;s:11:\"size_before\";i:91298;s:10:\"size_after\";i:89735;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:456;s:11:\"size_before\";i:29454;s:10:\"size_after\";i:28998;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:1703;s:11:\"size_before\";i:120631;s:10:\"size_after\";i:118928;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1433;s:11:\"size_before\";i:78433;s:10:\"size_after\";i:77000;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:499;s:11:\"size_before\";i:24446;s:10:\"size_after\";i:23947;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(425,150,'_wp_attached_file','2021/09/beautiful-woman_SunLight-added-768x512-1.jpg'),(426,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:52:\"2021/09/beautiful-woman_SunLight-added-768x512-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"beautiful-woman_SunLight-added-768x512-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(427,150,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.72107078934398582958920087548904120922088623046875;s:5:\"bytes\";i:4196;s:11:\"size_before\";i:154204;s:10:\"size_after\";i:150008;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:248;s:11:\"size_before\";i:12803;s:10:\"size_after\";i:12555;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5812;s:10:\"size_after\";i:5812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.439999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:477;s:11:\"size_before\";i:19545;s:10:\"size_after\";i:19068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:585;s:11:\"size_before\";i:21439;s:10:\"size_after\";i:20854;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:953;s:11:\"size_before\";i:33080;s:10:\"size_after\";i:32127;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1142;s:11:\"size_before\";i:34545;s:10:\"size_after\";i:33403;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:791;s:11:\"size_before\";i:26980;s:10:\"size_after\";i:26189;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(428,151,'_wp_attached_file','2021/09/beautiful-woman_pixaby-1280x853-1.jpg'),(429,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:45:\"2021/09/beautiful-woman_pixaby-1280x853-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"beautiful-woman_pixaby-1280x853-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"beautiful-woman_pixaby-1280x853-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"beautiful-woman_pixaby-1280x853-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"beautiful-woman_pixaby-1280x853-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(430,151,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.501072055532476579031708752154372632503509521484375;s:5:\"bytes\";i:14931;s:11:\"size_before\";i:596984;s:10:\"size_after\";i:582053;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:227;s:11:\"size_before\";i:12969;s:10:\"size_after\";i:12742;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:2222;s:11:\"size_before\";i:94218;s:10:\"size_after\";i:91996;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1499999999999999944488848768742172978818416595458984375;s:5:\"bytes\";i:9;s:11:\"size_before\";i:5875;s:10:\"size_after\";i:5866;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1604;s:11:\"size_before\";i:58882;s:10:\"size_after\";i:57278;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:450;s:11:\"size_before\";i:19703;s:10:\"size_after\";i:19253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2380;s:11:\"size_before\";i:98958;s:10:\"size_after\";i:96578;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:594;s:11:\"size_before\";i:21697;s:10:\"size_after\";i:21103;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:961;s:11:\"size_before\";i:33679;s:10:\"size_after\";i:32718;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2572;s:11:\"size_before\";i:102573;s:10:\"size_after\";i:100001;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:827;s:11:\"size_before\";i:32890;s:10:\"size_after\";i:32063;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:2329;s:11:\"size_before\";i:88213;s:10:\"size_after\";i:85884;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:756;s:11:\"size_before\";i:27327;s:10:\"size_after\";i:26571;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(431,152,'_wp_attached_file','2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg'),(432,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:4:\"file\";s:78:\"2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:79:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:79:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:79:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:79:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:78:\"Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(433,152,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.76352358453356139467160801359568722546100616455078125;s:5:\"bytes\";i:5517;s:11:\"size_before\";i:722571;s:10:\"size_after\";i:717054;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.90000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:125;s:11:\"size_before\";i:13883;s:10:\"size_after\";i:13758;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.8000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:741;s:11:\"size_before\";i:92807;s:10:\"size_after\";i:92066;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6013;s:10:\"size_after\";i:6013;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:655;s:11:\"size_before\";i:60056;s:10:\"size_after\";i:59401;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:237;s:11:\"size_before\";i:20667;s:10:\"size_after\";i:20430;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.65000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:623;s:11:\"size_before\";i:95796;s:10:\"size_after\";i:95173;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:257;s:11:\"size_before\";i:22505;s:10:\"size_after\";i:22248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:379;s:11:\"size_before\";i:33844;s:10:\"size_after\";i:33465;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:694;s:11:\"size_before\";i:100576;s:10:\"size_after\";i:99882;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:120;s:11:\"size_before\";i:31326;s:10:\"size_after\";i:31206;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:692;s:11:\"size_before\";i:129643;s:10:\"size_after\";i:128951;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:615;s:11:\"size_before\";i:86732;s:10:\"size_after\";i:86117;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:379;s:11:\"size_before\";i:28723;s:10:\"size_after\";i:28344;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(434,154,'_wp_attached_file','2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg'),(435,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:54:\"2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Eye-Before-Woman-whitened-teeth-1280x854-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Eye-Before-Woman-whitened-teeth-1280x854-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Eye-Before-Woman-whitened-teeth-1280x854-1-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:54:\"Eye-Before-Woman-whitened-teeth-1280x854-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(436,154,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.62215518316175011381830017853644676506519317626953125;s:5:\"bytes\";i:3044;s:11:\"size_before\";i:489267;s:10:\"size_after\";i:486223;s:4:\"time\";d:0.390000000000000068833827526759705506265163421630859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:123;s:11:\"size_before\";i:11551;s:10:\"size_after\";i:11428;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5;s:5:\"bytes\";i:377;s:11:\"size_before\";i:75518;s:10:\"size_after\";i:75141;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5605;s:10:\"size_after\";i:5605;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.66000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:314;s:11:\"size_before\";i:47659;s:10:\"size_after\";i:47345;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:127;s:11:\"size_before\";i:16583;s:10:\"size_after\";i:16456;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:270;s:11:\"size_before\";i:77772;s:10:\"size_after\";i:77502;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:220;s:11:\"size_before\";i:18585;s:10:\"size_after\";i:18365;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:333;s:11:\"size_before\";i:28009;s:10:\"size_after\";i:27676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.320000000000000006661338147750939242541790008544921875;s:5:\"bytes\";i:268;s:11:\"size_before\";i:82644;s:10:\"size_after\";i:82376;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:450;s:11:\"size_before\";i:31768;s:10:\"size_after\";i:31318;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.39000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:277;s:11:\"size_before\";i:70633;s:10:\"size_after\";i:70356;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:285;s:11:\"size_before\";i:22940;s:10:\"size_after\";i:22655;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(441,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:56:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Idian-Woman-Dodge-2-Lips-full-face-scaled-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(442,161,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5769511114602836610032454700558446347713470458984375;s:5:\"bytes\";i:18065;s:11:\"size_before\";i:1145565;s:10:\"size_after\";i:1127500;s:4:\"time\";d:0.50000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:149;s:11:\"size_before\";i:11864;s:10:\"size_after\";i:11715;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5;s:5:\"bytes\";i:1315;s:11:\"size_before\";i:87863;s:10:\"size_after\";i:86548;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5463;s:10:\"size_after\";i:5463;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:700;s:11:\"size_before\";i:53915;s:10:\"size_after\";i:53215;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3001;s:11:\"size_before\";i:175059;s:10:\"size_after\";i:172058;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:5013;s:11:\"size_before\";i:288647;s:10:\"size_after\";i:283634;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.85999999999999998667732370449812151491641998291015625;s:5:\"bytes\";i:152;s:11:\"size_before\";i:17634;s:10:\"size_after\";i:17482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1334;s:11:\"size_before\";i:89942;s:10:\"size_after\";i:88608;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:256;s:11:\"size_before\";i:19568;s:10:\"size_after\";i:19312;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.229999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:371;s:11:\"size_before\";i:30112;s:10:\"size_after\";i:29741;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1468;s:11:\"size_before\";i:95628;s:10:\"size_after\";i:94160;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:739;s:11:\"size_before\";i:34655;s:10:\"size_after\";i:33916;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2088;s:11:\"size_before\";i:128721;s:10:\"size_after\";i:126633;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1158;s:11:\"size_before\";i:81703;s:10:\"size_after\";i:80545;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:321;s:11:\"size_before\";i:24791;s:10:\"size_after\";i:24470;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(446,127,'_wp_attachment_image_alt','Before'),(447,183,'_et_pb_module_type','et_pb_text'),(448,183,'_et_pb_built_for_post_type','page'),(516,201,'_et_theme_builder_marked_as_unused','2021-09-11 16:34:35'),(517,202,'_et_theme_builder_marked_as_unused','2021-09-11 16:34:35'),(518,207,'_wp_attached_file','2021/09/FLAP-PHOTO-LOGO-400PX.png'),(519,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:62;s:4:\"file\";s:33:\"2021/09/FLAP-PHOTO-LOGO-400PX.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"FLAP-PHOTO-LOGO-400PX-300x47.png\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FLAP-PHOTO-LOGO-400PX-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(520,207,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.95810564663023711773348622955381870269775390625;s:5:\"bytes\";i:2602;s:11:\"size_before\";i:13725;s:10:\"size_after\";i:11123;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:1899;s:11:\"size_before\";i:8987;s:10:\"size_after\";i:7088;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:703;s:11:\"size_before\";i:4738;s:10:\"size_after\";i:4035;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(575,214,'_edit_last','1'),(566,213,'_menu_item_type','custom'),(567,213,'_menu_item_menu_item_parent','0'),(568,213,'_menu_item_object_id','213'),(569,213,'_menu_item_object','custom'),(570,213,'_menu_item_target',''),(571,213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(572,213,'_menu_item_xfn',''),(573,213,'_menu_item_url','#'),(579,214,'_et_pb_page_layout','et_right_sidebar'),(580,214,'_et_pb_side_nav','off'),(581,214,'_et_pb_use_builder','on'),(582,214,'_et_pb_first_image',''),(583,214,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_24 et_section_regular et_pb_section--with-menu\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_18 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_3 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"88\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" alt=\"\" class=\"wp-image-1463\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu-3\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-1188 menu-item menu-item-type-post_type menu-item-object-page menu-item-1230\"><a href=\"https://flaphotography.com/products-photography/\">PRODUCTS PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_25 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_19\">\n				<div class=\"et_pb_column et_pb_column_2_3 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_16 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Graphic Design, Web Design, &amp; Logo Design.</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_18 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Since 2019, parent company FlapStart.com.</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_19 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Contact: 416-858-5737, Toronto, ON</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2257\" height=\"2560\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" alt=\"\" title=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg 2257w, https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-1280x1452.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-980x1112.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-480x544.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2257px, 100vw\" class=\"wp-image-439\" /></span>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">KASSI J.<br />\nPhotographer &amp; Graphic Designer</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_27 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_20\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_25_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_25 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_26_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_26 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_27_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_27 et_pb_bg_layout_light\" href=\"https://flaphotography.com/products-photography\" data-icon=\"&#x45;\">Products Photography</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_28_wrapper  et_pb_module \">\n				<a id=\"overlay_unique_id_1483\" class=\"et_pb_button et_pb_button_28 et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">PersonalIzed Offer</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_29_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_29 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_30_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_30 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_31_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_31 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_3 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_6 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_7 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/kcj_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_4 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(584,214,'_et_pb_truncate_post_date','2022-08-21 10:43:05'),(585,214,'_et_pb_old_content',''),(586,214,'_yoast_wpseo_estimated-reading-time-minutes',''),(587,218,'_wp_attached_file','2021/09/Laptop-photoshop-NEW-Size-1920.jpg'),(588,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2021/09/Laptop-photoshop-NEW-Size-1920.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Laptop-photoshop-NEW-Size-1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Laptop-photoshop-NEW-Size-1920-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"Laptop-photoshop-NEW-Size-1920-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Laptop-photoshop-NEW-Size-1920-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"Laptop-photoshop-NEW-Size-1920-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"Laptop-photoshop-NEW-Size-1920-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(454,191,'_wp_attached_file','2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg'),(455,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:62:\"2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"Woman-with-flowers-shutterstock_479006941-scaled-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-2560x1800.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:64:\"Woman-with-flowers-shutterstock_479006941-scaled-3-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:62:\"Woman-with-flowers-shutterstock_479006941-scaled-3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(457,191,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.97612220558755613541990214798715896904468536376953125;s:5:\"bytes\";i:19234;s:11:\"size_before\";i:1970450;s:10:\"size_after\";i:1951216;s:4:\"time\";d:1.410000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:683;s:11:\"size_before\";i:20362;s:10:\"size_after\";i:19679;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2300;s:11:\"size_before\";i:132273;s:10:\"size_after\";i:129973;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:190;s:11:\"size_before\";i:6977;s:10:\"size_after\";i:6787;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:85160;s:10:\"size_after\";i:83395;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.60999999999999998667732370449812151491641998291015625;s:5:\"bytes\";i:1514;s:11:\"size_before\";i:246311;s:10:\"size_after\";i:244797;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:175;s:11:\"size_before\";i:380072;s:10:\"size_after\";i:379897;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:516;s:11:\"size_before\";i:19962;s:10:\"size_after\";i:19446;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1564;s:11:\"size_before\";i:92406;s:10:\"size_after\";i:90842;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5;s:5:\"bytes\";i:558;s:11:\"size_before\";i:22354;s:10:\"size_after\";i:21796;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:834;s:11:\"size_before\";i:34384;s:10:\"size_after\";i:33550;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:2429;s:11:\"size_before\";i:144307;s:10:\"size_after\";i:141878;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:885;s:11:\"size_before\";i:35730;s:10:\"size_after\";i:34845;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:397815;s:10:\"size_after\";i:397815;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:2230;s:11:\"size_before\";i:185888;s:10:\"size_after\";i:183658;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2445;s:11:\"size_before\";i:125043;s:10:\"size_after\";i:122598;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1146;s:11:\"size_before\";i:41406;s:10:\"size_after\";i:40260;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(589,219,'_wp_attached_file','2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png'),(590,219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:46:\"2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1280x1280.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(591,218,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.39118828404542682619648985564708709716796875;s:5:\"bytes\";i:140183;s:11:\"size_before\";i:1131312;s:10:\"size_after\";i:991129;s:4:\"time\";d:1.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:9816;s:11:\"size_before\";i:25921;s:10:\"size_after\";i:16105;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:10326;s:11:\"size_before\";i:111560;s:10:\"size_after\";i:101234;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:9585;s:11:\"size_before\";i:17007;s:10:\"size_after\";i:7422;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10203;s:11:\"size_before\";i:75138;s:10:\"size_after\";i:64935;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9280;s:11:\"size_before\";i:197291;s:10:\"size_after\";i:188011;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:9927;s:11:\"size_before\";i:33869;s:10:\"size_after\";i:23942;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:10243;s:11:\"size_before\";i:116546;s:10:\"size_after\";i:106303;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9949;s:11:\"size_before\";i:35656;s:10:\"size_after\";i:25707;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10188;s:11:\"size_before\";i:48294;s:10:\"size_after\";i:38106;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10145;s:11:\"size_before\";i:119457;s:10:\"size_after\";i:109312;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:10138;s:11:\"size_before\";i:50409;s:10:\"size_after\";i:40271;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9971;s:11:\"size_before\";i:152875;s:10:\"size_after\";i:142904;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10303;s:11:\"size_before\";i:104943;s:10:\"size_after\";i:94640;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:10109;s:11:\"size_before\";i:42346;s:10:\"size_after\";i:32237;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(592,219,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9866181;s:10:\"size_after\";i:9866181;s:4:\"time\";d:8.410000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:138456;s:10:\"size_after\";i:138456;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1453557;s:10:\"size_after\";i:1453557;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36761;s:10:\"size_after\";i:36761;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:855233;s:10:\"size_after\";i:855233;s:4:\"time\";d:0.75;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:149115;s:10:\"size_after\";i:149115;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:974023;s:10:\"size_after\";i:974023;s:4:\"time\";d:0.5;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:171739;s:10:\"size_after\";i:171739;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:292050;s:10:\"size_after\";i:292050;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1599675;s:10:\"size_after\";i:1599675;s:4:\"time\";d:1.4499999999999999555910790149937383830547332763671875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:343902;s:10:\"size_after\";i:343902;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2162923;s:10:\"size_after\";i:2162923;s:4:\"time\";d:2.87999999999999989341858963598497211933135986328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1340090;s:10:\"size_after\";i:1340090;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:348657;s:10:\"size_after\";i:348657;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(593,214,'_et_pb_built_for_post_type','page'),(594,214,'_et_pb_ab_subjects',''),(595,214,'_et_pb_enable_shortcode_tracking',''),(596,214,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"214\" /]'),(597,214,'_et_pb_custom_css',''),(598,214,'_et_pb_gutter_width','3'),(603,214,'_yoast_wpseo_content_score','60'),(600,214,'_global_colors_info','{}'),(601,214,'_et_builder_version','VB|Divi|4.9.7'),(602,214,'_et_pb_show_page_creation','off'),(606,234,'_et_pb_built_for_post_type','page'),(607,235,'_et_pb_built_for_post_type','page'),(608,238,'_menu_item_type','custom'),(609,238,'_menu_item_menu_item_parent','0'),(610,238,'_menu_item_object_id','238'),(611,238,'_menu_item_object','custom'),(612,238,'_menu_item_target',''),(613,238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(614,238,'_menu_item_xfn',''),(615,238,'_menu_item_url','http://flapstart.com/'),(617,234,'_et_pb_excluded_global_options','[]'),(618,234,'_et_pb_excluded_global_options','[]'),(655,258,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.19674185463659199513131170533597469329833984375;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:9576;s:10:\"size_after\";i:8025;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:9576;s:10:\"size_after\";i:8025;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(654,258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:240;s:4:\"file\";s:33:\"2021/09/FLAP-PHOTO-ICON-300PX.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"FLAP-PHOTO-ICON-300PX-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1159,71,'_yoast_wpseo_estimated-reading-time-minutes',''),(1160,71,'_yoast_wpseo_meta-robots-nofollow','1'),(1163,463,'_thumbnail_id','0'),(1178,812,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.544679836691479568600016136770136654376983642578125;s:5:\"bytes\";i:127673;s:11:\"size_before\";i:5017252;s:10:\"size_after\";i:4889579;s:4:\"time\";d:2.45999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1771;s:11:\"size_before\";i:24657;s:10:\"size_after\";i:22886;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:7101;s:11:\"size_before\";i:194501;s:10:\"size_after\";i:187400;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1191;s:11:\"size_before\";i:12445;s:10:\"size_after\";i:11254;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8394;s:11:\"size_before\";i:252264;s:10:\"size_after\";i:243870;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10541;s:11:\"size_before\";i:372220;s:10:\"size_after\";i:361679;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:12042;s:11:\"size_before\";i:583675;s:10:\"size_after\";i:571633;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2509;s:11:\"size_before\";i:43086;s:10:\"size_after\";i:40577;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5769;s:11:\"size_before\";i:208435;s:10:\"size_after\";i:202666;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2694;s:11:\"size_before\";i:48343;s:10:\"size_after\";i:45649;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3639;s:11:\"size_before\";i:75257;s:10:\"size_after\";i:71618;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:11456;s:11:\"size_before\";i:436171;s:10:\"size_after\";i:424715;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3766;s:11:\"size_before\";i:74989;s:10:\"size_after\";i:71223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:14835;s:11:\"size_before\";i:804456;s:10:\"size_after\";i:789621;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12349;s:11:\"size_before\";i:568051;s:10:\"size_after\";i:555702;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:10405;s:11:\"size_before\";i:374176;s:10:\"size_after\";i:363771;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:4951;s:11:\"size_before\";i:117372;s:10:\"size_after\";i:112421;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:14260;s:11:\"size_before\";i:827154;s:10:\"size_after\";i:812894;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}}}'),(1173,810,'_wp_attached_file','2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg'),(1174,810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2145;s:4:\"file\";s:44:\"2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Noelle-Headshot-IMG_5345-2500PX3-1024x879.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:879;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-768x659.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Noelle-Headshot-IMG_5345-2500PX3-1536x1318.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1318;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Noelle-Headshot-IMG_5345-2500PX3-2048x1757.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Noelle-Headshot-IMG_5345-2500PX3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"Noelle-Headshot-IMG_5345-2500PX3-1080x927.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:927;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Noelle-Headshot-IMG_5345-2500PX3-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Noelle-Headshot-IMG_5345-2500PX3-1280x1098.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1098;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-980x841.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Noelle-Headshot-IMG_5345-2500PX3-480x412.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1175,810,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.104095902897373804307790123857557773590087890625;s:5:\"bytes\";i:73660;s:11:\"size_before\";i:3500791;s:10:\"size_after\";i:3427131;s:4:\"time\";d:1.550000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1981;s:11:\"size_before\";i:33084;s:10:\"size_after\";i:31103;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5247;s:11:\"size_before\";i:216983;s:10:\"size_after\";i:211736;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1236;s:11:\"size_before\";i:12386;s:10:\"size_after\";i:11150;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4633;s:11:\"size_before\";i:140779;s:10:\"size_after\";i:136146;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:6922;s:11:\"size_before\";i:409293;s:10:\"size_after\";i:402371;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1100000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:7190;s:11:\"size_before\";i:649864;s:10:\"size_after\";i:642674;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1918;s:11:\"size_before\";i:37254;s:10:\"size_after\";i:35336;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:4135;s:11:\"size_before\";i:169931;s:10:\"size_after\";i:165796;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2177;s:11:\"size_before\";i:42301;s:10:\"size_after\";i:40124;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2801;s:11:\"size_before\";i:65135;s:10:\"size_after\";i:62334;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5333;s:11:\"size_before\";i:235950;s:10:\"size_after\";i:230617;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2725;s:11:\"size_before\";i:67829;s:10:\"size_after\";i:65104;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:13385;s:11:\"size_before\";i:839280;s:10:\"size_after\";i:825895;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5903;s:11:\"size_before\";i:307401;s:10:\"size_after\";i:301498;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:5057;s:11:\"size_before\";i:204831;s:10:\"size_after\";i:199774;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3017;s:11:\"size_before\";i:68490;s:10:\"size_after\";i:65473;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1176,812,'_wp_attached_file','2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg'),(1177,812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1628;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"NOELLE_5330-1-6000px72-3000PX-651x1024.jpg\";s:5:\"width\";i:651;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"NOELLE_5330-1-6000px72-3000PX-768x1208.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"NOELLE_5330-1-6000px72-3000PX-977x1536.jpg\";s:5:\"width\";i:977;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"NOELLE_5330-1-6000px72-3000PX-1302x2048.jpg\";s:5:\"width\";i:1302;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"NOELLE_5330-1-6000px72-3000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"NOELLE_5330-1-6000px72-3000PX-1080x1698.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1698;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"NOELLE_5330-1-6000px72-3000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"NOELLE_5330-1-6000px72-3000PX-1280x2013.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2013;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"NOELLE_5330-1-6000px72-3000PX-980x1541.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"NOELLE_5330-1-6000px72-3000PX-480x755.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:33:\"NOELLE_5330-1-6000px72-3000PX.jpg\";}'),(660,260,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.693379790940763740536567638628184795379638671875;s:5:\"bytes\";i:2826;s:11:\"size_before\";i:14350;s:10:\"size_after\";i:11524;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:9785;s:10:\"size_after\";i:8253;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1294;s:11:\"size_before\";i:4565;s:10:\"size_after\";i:3271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(658,260,'_wp_attached_file','2021/09/FLAP-PHOTO-LOGO-400PX3.png'),(659,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:54;s:4:\"file\";s:34:\"2021/09/FLAP-PHOTO-LOGO-400PX3.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"FLAP-PHOTO-LOGO-400PX3-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"FLAP-PHOTO-LOGO-400PX3-150x54.png\";s:5:\"width\";i:150;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(652,85,'_thumbnail_id','0'),(653,258,'_wp_attached_file','2021/09/FLAP-PHOTO-ICON-300PX.png'),(692,309,'_wp_attached_file','2021/09/Marvelous-2000pX-scaled.jpg'),(693,309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1378;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2021/09/Marvelous-2000pX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Marvelous-2000pX-551x1024.jpg\";s:5:\"width\";i:551;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Marvelous-2000pX-768x1427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Marvelous-2000pX-827x1536.jpg\";s:5:\"width\";i:827;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"Marvelous-2000pX-1102x2048.jpg\";s:5:\"width\";i:1102;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Marvelous-2000pX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Marvelous-2000pX-1080x2006.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:2006;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:30:\"Marvelous-2000pX-1561x1800.jpg\";s:5:\"width\";i:1561;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:30:\"Marvelous-2000pX-1280x2378.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:29:\"Marvelous-2000pX-980x1821.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1821;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"Marvelous-2000pX-480x892.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:892;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1622934357\";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:14:\"original_image\";s:20:\"Marvelous-2000pX.jpg\";}'),(694,309,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.559943823707332200001474120654165744781494140625;s:5:\"bytes\";i:386787;s:11:\"size_before\";i:1403439;s:10:\"size_after\";i:1016652;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:23161;s:11:\"size_before\";i:30100;s:10:\"size_after\";i:6939;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:23732;s:11:\"size_before\";i:65647;s:10:\"size_after\";i:41915;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.2900000000000062527760746888816356658935546875;s:5:\"bytes\";i:23077;s:11:\"size_before\";i:26745;s:10:\"size_after\";i:3668;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:24020;s:11:\"size_before\";i:95763;s:10:\"size_after\";i:71743;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:24161;s:11:\"size_before\";i:104817;s:10:\"size_after\";i:80656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:25392;s:11:\"size_before\";i:155665;s:10:\"size_after\";i:130273;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.099999999999994315658113919198513031005859375;s:5:\"bytes\";i:23062;s:11:\"size_before\";i:31547;s:10:\"size_after\";i:8485;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:23367;s:11:\"size_before\";i:63039;s:10:\"size_after\";i:39672;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:23061;s:11:\"size_before\";i:32724;s:10:\"size_after\";i:9663;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:23092;s:11:\"size_before\";i:37650;s:10:\"size_after\";i:14558;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:25402;s:11:\"size_before\";i:151482;s:10:\"size_after\";i:126080;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.25;s:5:\"bytes\";i:23076;s:11:\"size_before\";i:41025;s:10:\"size_after\";i:17949;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:27007;s:11:\"size_before\";i:182851;s:10:\"size_after\";i:155844;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:26745;s:11:\"size_before\";i:194709;s:10:\"size_after\";i:167964;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24929;s:11:\"size_before\";i:132164;s:10:\"size_after\";i:107235;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:23503;s:11:\"size_before\";i:57511;s:10:\"size_after\";i:34008;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(695,311,'_wp_attached_file','2021/09/Marvelous-2000pX-CROP.jpg'),(696,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1561;s:6:\"height\";i:2154;s:4:\"file\";s:33:\"2021/09/Marvelous-2000pX-CROP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pX-CROP-742x1024.jpg\";s:5:\"width\";i:742;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pX-CROP-768x1060.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1060;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pX-CROP-1113x1536.jpg\";s:5:\"width\";i:1113;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pX-CROP-1484x2048.jpg\";s:5:\"width\";i:1484;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pX-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pX-CROP-1080x1490.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pX-CROP-1561x1800.jpg\";s:5:\"width\";i:1561;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pX-CROP-1280x1766.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1766;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pX-CROP-980x1352.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pX-CROP-480x662.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1622934357\";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\";}}'),(697,311,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.940195826635999765130691230297088623046875;s:5:\"bytes\";i:401147;s:11:\"size_before\";i:1386124;s:10:\"size_after\";i:984977;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.7900000000000062527760746888816356658935546875;s:5:\"bytes\";i:23665;s:11:\"size_before\";i:31642;s:10:\"size_after\";i:7977;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:24394;s:11:\"size_before\";i:75347;s:10:\"size_after\";i:50953;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:23661;s:11:\"size_before\";i:27511;s:10:\"size_after\";i:3850;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:24459;s:11:\"size_before\";i:78611;s:10:\"size_after\";i:54152;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:25933;s:11:\"size_before\";i:126395;s:10:\"size_after\";i:100462;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:27914;s:11:\"size_before\";i:191082;s:10:\"size_after\";i:163168;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:23706;s:11:\"size_before\";i:34150;s:10:\"size_after\";i:10444;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:24826;s:11:\"size_before\";i:74192;s:10:\"size_after\";i:49366;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:23713;s:11:\"size_before\";i:35117;s:10:\"size_after\";i:11404;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:23861;s:11:\"size_before\";i:40912;s:10:\"size_after\";i:17051;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:25829;s:11:\"size_before\";i:121497;s:10:\"size_after\";i:95668;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:23757;s:11:\"size_before\";i:42402;s:10:\"size_after\";i:18645;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:29245;s:11:\"size_before\";i:197107;s:10:\"size_after\";i:167862;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:26880;s:11:\"size_before\";i:154246;s:10:\"size_after\";i:127366;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:25331;s:11:\"size_before\";i:106410;s:10:\"size_after\";i:81079;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:23973;s:11:\"size_before\";i:49503;s:10:\"size_after\";i:25530;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(698,359,'_menu_item_type','post_type'),(699,359,'_menu_item_menu_item_parent','213'),(700,359,'_menu_item_object_id','98'),(701,359,'_menu_item_object','page'),(702,359,'_menu_item_target',''),(703,359,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(704,359,'_menu_item_xfn',''),(705,359,'_menu_item_url',''),(713,238,'_wp_old_date','2021-09-11'),(707,208,'_wp_old_date','2021-09-11'),(708,213,'_wp_old_date','2021-09-11'),(709,211,'_wp_old_date','2021-09-11'),(710,209,'_wp_old_date','2021-09-11'),(3406,1518,'post_do_customizeclosebtn','1'),(714,367,'_et_pb_built_for_post_type','page'),(718,380,'_wp_attached_file','2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg'),(719,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:1992;s:4:\"file\";s:40:\"2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-188x300.jpg\";s:5:\"width\";i:188;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"KASSI-STUDIO-SET-SHOT-1200PX-643x1024.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"KASSI-STUDIO-SET-SHOT-1200PX-768x1224.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"KASSI-STUDIO-SET-SHOT-1200PX-964x1536.jpg\";s:5:\"width\";i:964;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"KASSI-STUDIO-SET-SHOT-1200PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"KASSI-STUDIO-SET-SHOT-1200PX-1080x1721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"KASSI-STUDIO-SET-SHOT-1200PX-1250x1800.jpg\";s:5:\"width\";i:1250;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"KASSI-STUDIO-SET-SHOT-1200PX-980x1562.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1562;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"KASSI-STUDIO-SET-SHOT-1200PX-480x765.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(720,380,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.2670165855244786001776446937583386898040771484375;s:5:\"bytes\";i:24916;s:11:\"size_before\";i:762653;s:10:\"size_after\";i:737737;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:797;s:11:\"size_before\";i:8549;s:10:\"size_after\";i:7752;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2030;s:11:\"size_before\";i:52270;s:10:\"size_after\";i:50240;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:735;s:11:\"size_before\";i:4558;s:10:\"size_after\";i:3823;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:2262;s:11:\"size_before\";i:69529;s:10:\"size_after\";i:67267;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2857;s:11:\"size_before\";i:101161;s:10:\"size_after\";i:98304;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:868;s:11:\"size_before\";i:10329;s:10:\"size_after\";i:9461;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:1582;s:11:\"size_before\";i:48629;s:10:\"size_after\";i:47047;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:941;s:11:\"size_before\";i:11772;s:10:\"size_after\";i:10831;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1143;s:11:\"size_before\";i:17796;s:10:\"size_after\";i:16653;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3104;s:11:\"size_before\";i:122187;s:10:\"size_after\";i:119083;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1209;s:11:\"size_before\";i:22654;s:10:\"size_after\";i:21445;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2867;s:11:\"size_before\";i:156270;s:10:\"size_after\";i:153403;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2939;s:11:\"size_before\";i:104086;s:10:\"size_after\";i:101147;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1582;s:11:\"size_before\";i:32863;s:10:\"size_after\";i:31281;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(721,9,'_thumbnail_id','0'),(927,646,'_wp_attached_file','2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg'),(928,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2259;s:6:\"height\";i:2348;s:4:\"file\";s:45:\"2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-289x300.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-985x1024.jpg\";s:5:\"width\";i:985;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-768x798.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-1478x1536.jpg\";s:5:\"width\";i:1478;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-1970x2048.jpg\";s:5:\"width\";i:1970;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-1080x1123.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-2259x1800.jpg\";s:5:\"width\";i:2259;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-1280x1330.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-980x1019.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2-480x499.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(929,646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6949355302548145818519742533680982887744903564453125;s:5:\"bytes\";i:9434;s:11:\"size_before\";i:1357536;s:10:\"size_after\";i:1348102;s:4:\"time\";d:3.089999999999999857891452847979962825775146484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:867;s:11:\"size_before\";i:11193;s:10:\"size_after\";i:10326;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2300000000000000099920072216264088638126850128173828125;s:5:\"bytes\";i:186;s:11:\"size_before\";i:79566;s:10:\"size_after\";i:79380;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:857;s:11:\"size_before\";i:4868;s:10:\"size_after\";i:4011;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:593;s:11:\"size_before\";i:51364;s:10:\"size_after\";i:50771;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163733;s:10:\"size_after\";i:163733;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:270298;s:10:\"size_after\";i:270298;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:906;s:11:\"size_before\";i:13248;s:10:\"size_after\";i:12342;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:768;s:11:\"size_before\";i:67672;s:10:\"size_after\";i:66904;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:944;s:11:\"size_before\";i:14596;s:10:\"size_after\";i:13652;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:954;s:11:\"size_before\";i:21920;s:10:\"size_after\";i:20966;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:93532;s:10:\"size_after\";i:93532;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:843;s:11:\"size_before\";i:23661;s:10:\"size_after\";i:22818;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1529;s:11:\"size_before\";i:312588;s:10:\"size_after\";i:311059;s:4:\"time\";d:2.020000000000000017763568394002504646778106689453125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126743;s:10:\"size_after\";i:126743;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:85;s:11:\"size_before\";i:78782;s:10:\"size_after\";i:78697;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:902;s:11:\"size_before\";i:23772;s:10:\"size_after\";i:22870;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(725,392,'_wp_attached_file','2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg'),(726,392,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2259;s:6:\"height\";i:2348;s:4:\"file\";s:66:\"2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-289x300.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:67:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-985x1024.jpg\";s:5:\"width\";i:985;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-768x798.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:68:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-1478x1536.jpg\";s:5:\"width\";i:1478;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:68:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-1970x2048.jpg\";s:5:\"width\";i:1970;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:67:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:68:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-1080x1123.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:68:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-2259x1800.jpg\";s:5:\"width\";i:2259;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:67:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:66:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1631485954\";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:14:\"original_image\";s:36:\"ANDREW-BOSS-IMG_2437-4000PX-CROP.jpg\";}'),(727,392,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.83493653535294498624352854676544666290283203125;s:5:\"bytes\";i:387632;s:11:\"size_before\";i:1444505;s:10:\"size_after\";i:1056873;s:4:\"time\";d:0.88000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.0199999999999960209606797434389591217041015625;s:5:\"bytes\";i:23749;s:11:\"size_before\";i:31240;s:10:\"size_after\";i:7491;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24175;s:11:\"size_before\";i:76919;s:10:\"size_after\";i:52744;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.8700000000000045474735088646411895751953125;s:5:\"bytes\";i:23707;s:11:\"size_before\";i:26981;s:10:\"size_after\";i:3274;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:24118;s:11:\"size_before\";i:63953;s:10:\"size_after\";i:39835;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.25;s:5:\"bytes\";i:24653;s:11:\"size_before\";i:135082;s:10:\"size_after\";i:110429;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:24788;s:11:\"size_before\";i:214021;s:10:\"size_after\";i:189233;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:23845;s:11:\"size_before\";i:33430;s:10:\"size_after\";i:9585;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:24488;s:11:\"size_before\";i:73952;s:10:\"size_after\";i:49464;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:23862;s:11:\"size_before\";i:34443;s:10:\"size_after\";i:10581;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:23966;s:11:\"size_before\";i:39857;s:10:\"size_after\";i:15891;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:24313;s:11:\"size_before\";i:96947;s:10:\"size_after\";i:72634;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:23901;s:11:\"size_before\";i:40373;s:10:\"size_after\";i:16472;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:25256;s:11:\"size_before\";i:325799;s:10:\"size_after\";i:300543;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24562;s:11:\"size_before\";i:123694;s:10:\"size_after\";i:99132;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24254;s:11:\"size_before\";i:85526;s:10:\"size_after\";i:61272;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:23995;s:11:\"size_before\";i:42288;s:10:\"size_after\";i:18293;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(728,402,'_wp_attached_file','2021/09/Marvelous-2000pXCROP2.jpg'),(729,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1560;s:6:\"height\";i:1932;s:4:\"file\";s:33:\"2021/09/Marvelous-2000pXCROP2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pXCROP2-827x1024.jpg\";s:5:\"width\";i:827;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-768x951.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pXCROP2-1240x1536.jpg\";s:5:\"width\";i:1240;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pXCROP2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pXCROP2-1080x1338.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pXCROP2-1560x1800.jpg\";s:5:\"width\";i:1560;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"Marvelous-2000pXCROP2-1280x1585.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Marvelous-2000pXCROP2-980x1214.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Marvelous-2000pXCROP2-480x594.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1622934357\";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\";}}'),(730,402,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.4157206928678220947404042817652225494384765625;s:5:\"bytes\";i:388988;s:11:\"size_before\";i:1199998;s:10:\"size_after\";i:811010;s:4:\"time\";d:0.600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:24661;s:11:\"size_before\";i:33323;s:10:\"size_after\";i:8662;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:25676;s:11:\"size_before\";i:81896;s:10:\"size_after\";i:56220;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.18000000000000682121026329696178436279296875;s:5:\"bytes\";i:24599;s:11:\"size_before\";i:28543;s:10:\"size_after\";i:3944;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:25535;s:11:\"size_before\";i:75285;s:10:\"size_after\";i:49750;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:27614;s:11:\"size_before\";i:138516;s:10:\"size_after\";i:110902;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.7300000000000039790393202565610408782958984375;s:5:\"bytes\";i:24616;s:11:\"size_before\";i:35302;s:10:\"size_after\";i:10686;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25858;s:11:\"size_before\";i:76740;s:10:\"size_after\";i:50882;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.68999999999999772626324556767940521240234375;s:5:\"bytes\";i:24654;s:11:\"size_before\";i:36424;s:10:\"size_after\";i:11770;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:24817;s:11:\"size_before\";i:42447;s:10:\"size_after\";i:17630;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:26681;s:11:\"size_before\";i:114712;s:10:\"size_after\";i:88031;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:24740;s:11:\"size_before\";i:43816;s:10:\"size_after\";i:19076;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:30373;s:11:\"size_before\";i:197963;s:10:\"size_after\";i:167590;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:27829;s:11:\"size_before\";i:145234;s:10:\"size_after\";i:117405;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26335;s:11:\"size_before\";i:101085;s:10:\"size_after\";i:74750;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25000;s:11:\"size_before\";i:48712;s:10:\"size_after\";i:23712;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(731,408,'_wp_attached_file','2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg'),(732,408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2452;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-287x300.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-981x1024.jpg\";s:5:\"width\";i:981;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-768x802.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-1471x1536.jpg\";s:5:\"width\";i:1471;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-1962x2048.jpg\";s:5:\"width\";i:1962;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-1080x1128.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-1280x1336.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-980x1023.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Pastor-TRA-BLACK-Mo-Colvin-2500px-480x501.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:37:\"Pastor-TRA-BLACK-Mo-Colvin-2500px.jpg\";}'),(733,408,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.656307364305082074906749767251312732696533203125;s:5:\"bytes\";i:60053;s:11:\"size_before\";i:2260770;s:10:\"size_after\";i:2200717;s:4:\"time\";d:1.600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1114;s:11:\"size_before\";i:15998;s:10:\"size_after\";i:14884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:3221;s:11:\"size_before\";i:112478;s:10:\"size_after\";i:109257;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:918;s:11:\"size_before\";i:6510;s:10:\"size_after\";i:5592;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:2170;s:11:\"size_before\";i:75130;s:10:\"size_after\";i:72960;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:7924;s:11:\"size_before\";i:252008;s:10:\"size_after\";i:244084;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14724;s:11:\"size_before\";i:466548;s:10:\"size_after\";i:451824;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1051;s:11:\"size_before\";i:17827;s:10:\"size_after\";i:16776;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2617;s:11:\"size_before\";i:88653;s:10:\"size_after\";i:86036;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:1148;s:11:\"size_before\";i:19965;s:10:\"size_after\";i:18817;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1210;s:11:\"size_before\";i:29613;s:10:\"size_after\";i:28403;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3825;s:11:\"size_before\";i:134847;s:10:\"size_after\";i:131022;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:34416;s:10:\"size_after\";i:33001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:8439;s:11:\"size_before\";i:671897;s:10:\"size_after\";i:663458;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.029999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:5703;s:11:\"size_before\";i:188013;s:10:\"size_after\";i:182310;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3238;s:11:\"size_before\";i:112560;s:10:\"size_after\";i:109322;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1336;s:11:\"size_before\";i:34307;s:10:\"size_after\";i:32971;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(688,290,'_et_pb_module_type','et_pb_text'),(689,290,'_et_pb_built_for_post_type','page'),(690,291,'_et_pb_module_type','et_pb_button'),(691,291,'_et_pb_built_for_post_type','page'),(737,414,'_wp_attached_file','2021/09/Bishop-Couple3_2216-2000px-scaled.jpg'),(738,414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1803;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Bishop-Couple3_2216-2000px-721x1024.jpg\";s:5:\"width\";i:721;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Bishop-Couple3_2216-2000px-768x1091.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1091;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Bishop-Couple3_2216-2000px-1082x1536.jpg\";s:5:\"width\";i:1082;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"Bishop-Couple3_2216-2000px-1442x2048.jpg\";s:5:\"width\";i:1442;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Bishop-Couple3_2216-2000px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Bishop-Couple3_2216-2000px-1080x1534.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:40:\"Bishop-Couple3_2216-2000px-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Bishop-Couple3_2216-2000px-1280x1817.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1817;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Bishop-Couple3_2216-2000px-980x1391.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Bishop-Couple3_2216-2000px-480x682.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:30:\"Bishop-Couple3_2216-2000px.jpg\";}'),(739,414,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.8677135075826658550113279488869011402130126953125;s:5:\"bytes\";i:55723;s:11:\"size_before\";i:1943116;s:10:\"size_after\";i:1887393;s:4:\"time\";d:1.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1039;s:11:\"size_before\";i:13501;s:10:\"size_after\";i:12462;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2553;s:11:\"size_before\";i:88004;s:10:\"size_after\";i:85451;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:937;s:11:\"size_before\";i:7071;s:10:\"size_after\";i:6134;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2744;s:11:\"size_before\";i:98051;s:10:\"size_after\";i:95307;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5;s:5:\"bytes\";i:4457;s:11:\"size_before\";i:178635;s:10:\"size_after\";i:174178;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:7643;s:11:\"size_before\";i:302631;s:10:\"size_after\";i:294988;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:999;s:11:\"size_before\";i:17353;s:10:\"size_after\";i:16354;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1933;s:11:\"size_before\";i:87317;s:10:\"size_after\";i:85384;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1016;s:11:\"size_before\";i:19122;s:10:\"size_after\";i:18106;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1184;s:11:\"size_before\";i:29165;s:10:\"size_after\";i:27981;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:4404;s:11:\"size_before\";i:178011;s:10:\"size_after\";i:173607;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1380;s:11:\"size_before\";i:32740;s:10:\"size_after\";i:31360;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13651;s:11:\"size_before\";i:453514;s:10:\"size_after\";i:439863;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:6189;s:11:\"size_before\";i:242829;s:10:\"size_after\";i:236640;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3992;s:11:\"size_before\";i:149691;s:10:\"size_after\";i:145699;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1602;s:11:\"size_before\";i:45481;s:10:\"size_after\";i:43879;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(740,417,'_wp_attached_file','2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg'),(741,417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1529;s:6:\"height\";i:2560;s:4:\"file\";s:41:\"2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-179x300.jpg\";s:5:\"width\";i:179;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"FAMILY-IMG_2462-2000PX-612x1024.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"FAMILY-IMG_2462-2000PX-768x1286.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"FAMILY-IMG_2462-2000PX-917x1536.jpg\";s:5:\"width\";i:917;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"FAMILY-IMG_2462-2000PX-1223x2048.jpg\";s:5:\"width\";i:1223;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"FAMILY-IMG_2462-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"FAMILY-IMG_2462-2000PX-1080x1808.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1808;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:36:\"FAMILY-IMG_2462-2000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"FAMILY-IMG_2462-2000PX-1280x2143.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"FAMILY-IMG_2462-2000PX-980x1641.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"FAMILY-IMG_2462-2000PX-480x804.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:26:\"FAMILY-IMG_2462-2000PX.jpg\";}'),(742,417,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.823610962994560935612753382883965969085693359375;s:5:\"bytes\";i:37620;s:11:\"size_before\";i:2062940;s:10:\"size_after\";i:2025320;s:4:\"time\";d:2.04000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1085;s:11:\"size_before\";i:13188;s:10:\"size_after\";i:12103;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1890;s:11:\"size_before\";i:83249;s:10:\"size_after\";i:81359;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:951;s:11:\"size_before\";i:7760;s:10:\"size_after\";i:6809;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:2103;s:11:\"size_before\";i:120175;s:10:\"size_after\";i:118072;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2194;s:11:\"size_before\";i:162057;s:10:\"size_after\";i:159863;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2698;s:11:\"size_before\";i:267228;s:10:\"size_after\";i:264530;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1160;s:11:\"size_before\";i:20368;s:10:\"size_after\";i:19208;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1835;s:11:\"size_before\";i:97713;s:10:\"size_after\";i:95878;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1289;s:11:\"size_before\";i:23268;s:10:\"size_after\";i:21979;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1450;s:11:\"size_before\";i:35775;s:10:\"size_after\";i:34325;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2606;s:11:\"size_before\";i:214996;s:10:\"size_after\";i:212390;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:36825;s:10:\"size_after\";i:35369;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:9911;s:11:\"size_before\";i:451925;s:10:\"size_after\";i:442014;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2914;s:11:\"size_before\";i:289835;s:10:\"size_after\";i:286921;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:181918;s:10:\"size_after\";i:179510;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1670;s:11:\"size_before\";i:56660;s:10:\"size_after\";i:54990;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(743,367,'_et_pb_excluded_global_options','[]'),(1158,71,'_yoast_wpseo_content_score','60'),(745,430,'_menu_item_type','post_type'),(746,430,'_menu_item_menu_item_parent','0'),(747,430,'_menu_item_object_id','214'),(748,430,'_menu_item_object','page'),(749,430,'_menu_item_target',''),(750,430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(751,430,'_menu_item_xfn',''),(752,430,'_menu_item_url',''),(756,439,'_wp_attached_file','2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg'),(757,439,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2257;s:6:\"height\";i:2560;s:4:\"file\";s:60:\"2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Kassi-The-Photographer3-IMG_2291-1-4000px-903x1024.jpg\";s:5:\"width\";i:903;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-768x871.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"Kassi-The-Photographer3-IMG_2291-1-4000px-1354x1536.jpg\";s:5:\"width\";i:1354;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:55:\"Kassi-The-Photographer3-IMG_2291-1-4000px-1805x2048.jpg\";s:5:\"width\";i:1805;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:54:\"Kassi-The-Photographer3-IMG_2291-1-4000px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Kassi-The-Photographer3-IMG_2291-1-4000px-1080x1225.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:55:\"Kassi-The-Photographer3-IMG_2291-1-4000px-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:55:\"Kassi-The-Photographer3-IMG_2291-1-4000px-1280x1452.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:54:\"Kassi-The-Photographer3-IMG_2291-1-4000px-980x1112.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:53:\"Kassi-The-Photographer3-IMG_2291-1-4000px-480x544.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1630358162\";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:14:\"original_image\";s:45:\"Kassi-The-Photographer3-IMG_2291-1-4000px.jpg\";}'),(758,439,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.84886428790304790936716017313301563262939453125;s:5:\"bytes\";i:501445;s:11:\"size_before\";i:2405143;s:10:\"size_after\";i:1903698;s:4:\"time\";d:2.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:27725;s:11:\"size_before\";i:40118;s:10:\"size_after\";i:12393;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:30411;s:11:\"size_before\";i:124271;s:10:\"size_after\";i:93860;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.5;s:5:\"bytes\";i:27593;s:11:\"size_before\";i:32655;s:10:\"size_after\";i:5062;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:29694;s:11:\"size_before\";i:99499;s:10:\"size_after\";i:69805;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:33731;s:11:\"size_before\";i:235342;s:10:\"size_after\";i:201611;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:38212;s:11:\"size_before\";i:396246;s:10:\"size_after\";i:358034;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:27880;s:11:\"size_before\";i:43575;s:10:\"size_after\";i:15695;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:30349;s:11:\"size_before\";i:110964;s:10:\"size_after\";i:80615;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:27865;s:11:\"size_before\";i:44909;s:10:\"size_after\";i:17044;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:28105;s:11:\"size_before\";i:53601;s:10:\"size_after\";i:25496;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:31703;s:11:\"size_before\";i:163248;s:10:\"size_after\";i:131545;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:28195;s:11:\"size_before\";i:55902;s:10:\"size_after\";i:27707;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:47482;s:11:\"size_before\";i:590187;s:10:\"size_after\";i:542705;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:33237;s:11:\"size_before\";i:214737;s:10:\"size_after\";i:181500;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:30992;s:11:\"size_before\";i:140550;s:10:\"size_after\";i:109558;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:28271;s:11:\"size_before\";i:59339;s:10:\"size_after\";i:31068;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(759,208,'_wp_old_date','2021-09-13'),(760,213,'_wp_old_date','2021-09-13'),(761,211,'_wp_old_date','2021-09-13'),(762,209,'_wp_old_date','2021-09-13'),(3404,1518,'dov_closebtn_cookie','0'),(3405,1518,'post_do_hideclosebtn','0'),(765,359,'_wp_old_date','2021-09-13'),(766,238,'_wp_old_date','2021-09-13'),(767,430,'_wp_old_date','2021-09-13'),(768,463,'_edit_last','1'),(769,463,'_wp_page_template','default'),(770,463,'_et_pb_post_hide_nav','default'),(771,463,'_et_pb_page_layout','et_right_sidebar'),(772,463,'_et_pb_side_nav','off'),(773,463,'_et_pb_use_builder','on'),(774,463,'_et_pb_first_image',''),(775,463,'_et_pb_truncate_post',''),(776,463,'_et_pb_truncate_post_date',''),(777,463,'_et_pb_old_content',''),(778,463,'_yoast_wpseo_estimated-reading-time-minutes',''),(779,463,'_edit_lock','1639969552:1'),(780,463,'_et_pb_built_for_post_type','page'),(781,463,'_et_pb_ab_subjects',''),(782,463,'_et_pb_enable_shortcode_tracking',''),(783,463,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"463\" /]'),(784,463,'_et_pb_custom_css',''),(785,463,'_et_pb_gutter_width','3'),(789,463,'_yoast_wpseo_content_score','60'),(787,463,'_global_colors_info','{}'),(788,463,'_et_builder_version','VB|Divi|4.14.4'),(1153,463,'_yoast_wpseo_meta-robots-nofollow','1'),(791,463,'_et_pb_show_page_creation','off'),(793,208,'_wp_old_date','2021-09-14'),(794,213,'_wp_old_date','2021-09-14'),(795,211,'_wp_old_date','2021-09-14'),(796,209,'_wp_old_date','2021-09-14'),(3403,1518,'overlay_automatictrigger_disabledesktop','0'),(799,359,'_wp_old_date','2021-09-14'),(800,238,'_wp_old_date','2021-09-14'),(801,430,'_wp_old_date','2021-09-14'),(815,208,'_wp_old_date','2021-09-15'),(816,213,'_wp_old_date','2021-09-15'),(817,211,'_wp_old_date','2021-09-15'),(818,209,'_wp_old_date','2021-09-15'),(3402,1518,'overlay_automatictrigger_disabletablet','0'),(821,359,'_wp_old_date','2021-09-15'),(822,238,'_wp_old_date','2021-09-15'),(823,430,'_wp_old_date','2021-09-15'),(825,560,'_wp_attached_file','2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg'),(826,560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2051;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-3000PX2-NEW-820x1024.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Monique-smile_MG_9348-3000PX2-NEW-1230x1536.jpg\";s:5:\"width\";i:1230;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Monique-smile_MG_9348-3000PX2-NEW-1641x2048.jpg\";s:5:\"width\";i:1641;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-3000PX2-NEW-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Monique-smile_MG_9348-3000PX2-NEW-1080x1348.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Monique-smile_MG_9348-3000PX2-NEW-2114x1800.jpg\";s:5:\"width\";i:2114;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Monique-smile_MG_9348-3000PX2-NEW-1280x1598.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-3000PX2-NEW-980x1223.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-3000PX2-NEW-480x599.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1631913082\";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:14:\"original_image\";s:37:\"Monique-smile_MG_9348-3000PX2-NEW.jpg\";}'),(827,560,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.564906295493958765518982545472681522369384765625;s:5:\"bytes\";i:464981;s:11:\"size_before\";i:2156193;s:10:\"size_after\";i:1691212;s:4:\"time\";d:0.8300000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:26217;s:11:\"size_before\";i:37365;s:10:\"size_after\";i:11148;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:28258;s:11:\"size_before\";i:110368;s:10:\"size_after\";i:82110;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.7699999999999960209606797434389591217041015625;s:5:\"bytes\";i:26088;s:11:\"size_before\";i:30774;s:10:\"size_after\";i:4686;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:27939;s:11:\"size_before\";i:100294;s:10:\"size_after\";i:72355;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:31118;s:11:\"size_before\";i:211992;s:10:\"size_after\";i:180874;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:36069;s:11:\"size_before\";i:360893;s:10:\"size_after\";i:324824;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:26153;s:11:\"size_before\";i:38156;s:10:\"size_after\";i:12003;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:27683;s:11:\"size_before\";i:95570;s:10:\"size_after\";i:67887;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.650000000000005684341886080801486968994140625;s:5:\"bytes\";i:26274;s:11:\"size_before\";i:40019;s:10:\"size_after\";i:13745;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:26363;s:11:\"size_before\";i:47643;s:10:\"size_after\";i:21280;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:29952;s:11:\"size_before\";i:170185;s:10:\"size_after\";i:140233;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:26537;s:11:\"size_before\";i:51705;s:10:\"size_after\";i:25168;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:38507;s:11:\"size_before\";i:429689;s:10:\"size_after\";i:391182;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:31692;s:11:\"size_before\";i:227772;s:10:\"size_after\";i:196080;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:29332;s:11:\"size_before\";i:144789;s:10:\"size_after\";i:115457;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:26799;s:11:\"size_before\";i:58979;s:10:\"size_after\";i:32180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(851,573,'_wp_attached_file','2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg'),(852,573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1761;s:6:\"height\";i:2327;s:4:\"file\";s:43:\"2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-227x300.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Lucie_MG_9282-2500px-M-View-RNW-775x1024.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Lucie_MG_9282-2500px-M-View-RNW-768x1015.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Lucie_MG_9282-2500px-M-View-RNW-1162x1536.jpg\";s:5:\"width\";i:1162;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Lucie_MG_9282-2500px-M-View-RNW-1550x2048.jpg\";s:5:\"width\";i:1550;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Lucie_MG_9282-2500px-M-View-RNW-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"Lucie_MG_9282-2500px-M-View-RNW-1080x1427.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Lucie_MG_9282-2500px-M-View-RNW-1761x1800.jpg\";s:5:\"width\";i:1761;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"Lucie_MG_9282-2500px-M-View-RNW-1280x1691.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Lucie_MG_9282-2500px-M-View-RNW-980x1295.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Lucie_MG_9282-2500px-M-View-RNW-480x634.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1632126482\";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\";}}'),(837,567,'_wp_attached_file','2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg'),(838,567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2235;s:6:\"height\";i:2353;s:4:\"file\";s:44:\"2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Meranda_MG_9390-2500PX-RNEW-CROP-973x1024.jpg\";s:5:\"width\";i:973;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-768x809.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1459x1536.jpg\";s:5:\"width\";i:1459;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1945x2048.jpg\";s:5:\"width\";i:1945;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Meranda_MG_9390-2500PX-RNEW-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1080x1137.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-2235x1800.jpg\";s:5:\"width\";i:2235;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1280x1348.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Meranda_MG_9390-2500PX-RNEW-CROP-980x1032.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-480x505.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1632091336\";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\";}}'),(839,567,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.14574512111273207892736536450684070587158203125;s:5:\"bytes\";i:553484;s:11:\"size_before\";i:2747399;s:10:\"size_after\";i:2193915;s:4:\"time\";d:1.340000000000000301980662698042578995227813720703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:27355;s:11:\"size_before\";i:40480;s:10:\"size_after\";i:13125;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:21;s:5:\"bytes\";i:33709;s:11:\"size_before\";i:160488;s:10:\"size_after\";i:126779;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.6200000000000045474735088646411895751953125;s:5:\"bytes\";i:26952;s:11:\"size_before\";i:31477;s:10:\"size_after\";i:4525;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:30990;s:11:\"size_before\";i:113405;s:10:\"size_after\";i:82415;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:43560;s:11:\"size_before\";i:312125;s:10:\"size_after\";i:268565;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:54040;s:11:\"size_before\";i:505596;s:10:\"size_after\";i:451556;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:27476;s:11:\"size_before\";i:44067;s:10:\"size_after\";i:16591;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:32330;s:11:\"size_before\";i:135079;s:10:\"size_after\";i:102749;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:27606;s:11:\"size_before\";i:45968;s:10:\"size_after\";i:18362;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:28135;s:11:\"size_before\";i:58023;s:10:\"size_after\";i:29888;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:35522;s:11:\"size_before\";i:190163;s:10:\"size_after\";i:154641;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.72999999999999687361196265555918216705322265625;s:5:\"bytes\";i:28289;s:11:\"size_before\";i:63247;s:10:\"size_after\";i:34958;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:55849;s:11:\"size_before\";i:571037;s:10:\"size_after\";i:515188;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:39337;s:11:\"size_before\";i:250703;s:10:\"size_after\";i:211366;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:33970;s:11:\"size_before\";i:162799;s:10:\"size_after\";i:128829;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:28364;s:11:\"size_before\";i:62742;s:10:\"size_after\";i:34378;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(853,573,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.36285513222679810496629215776920318603515625;s:5:\"bytes\";i:412325;s:11:\"size_before\";i:1692433;s:10:\"size_after\";i:1280108;s:4:\"time\";d:1.3200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.400000000000005684341886080801486968994140625;s:5:\"bytes\";i:24806;s:11:\"size_before\";i:34263;s:10:\"size_after\";i:9457;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25788;s:11:\"size_before\";i:92684;s:10:\"size_after\";i:66896;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24716;s:11:\"size_before\";i:28974;s:10:\"size_after\";i:4258;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:25843;s:11:\"size_before\";i:91690;s:10:\"size_after\";i:65847;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:26532;s:11:\"size_before\";i:162326;s:10:\"size_after\";i:135794;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:27465;s:11:\"size_before\";i:250724;s:10:\"size_after\";i:223259;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:24723;s:11:\"size_before\";i:36251;s:10:\"size_after\";i:11528;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:25560;s:11:\"size_before\";i:86604;s:10:\"size_after\";i:61044;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.7999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24781;s:11:\"size_before\";i:37662;s:10:\"size_after\";i:12881;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.659999999999996589394868351519107818603515625;s:5:\"bytes\";i:24879;s:11:\"size_before\";i:44695;s:10:\"size_after\";i:19816;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26370;s:11:\"size_before\";i:146122;s:10:\"size_after\";i:119752;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:25006;s:11:\"size_before\";i:47296;s:10:\"size_after\";i:22290;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:27860;s:11:\"size_before\";i:263360;s:10:\"size_after\";i:235500;s:4:\"time\";d:0.79000000000000003552713678800500929355621337890625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:26598;s:11:\"size_before\";i:187363;s:10:\"size_after\";i:160765;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:26245;s:11:\"size_before\";i:127009;s:10:\"size_after\";i:100764;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:25153;s:11:\"size_before\";i:55410;s:10:\"size_after\";i:30257;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(848,572,'_wp_attached_file','2021/09/Lucie_MG_9282-2500px-RNW.jpg'),(849,572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2482;s:6:\"height\";i:2408;s:4:\"file\";s:36:\"2021/09/Lucie_MG_9282-2500px-RNW.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Lucie_MG_9282-2500px-RNW-1024x993.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:993;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-768x745.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"Lucie_MG_9282-2500px-RNW-1536x1490.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:38:\"Lucie_MG_9282-2500px-RNW-2048x1987.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Lucie_MG_9282-2500px-RNW-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Lucie_MG_9282-2500px-RNW-1080x1048.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:38:\"Lucie_MG_9282-2500px-RNW-2482x1800.jpg\";s:5:\"width\";i:2482;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"Lucie_MG_9282-2500px-RNW-1280x1242.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-980x951.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"Lucie_MG_9282-2500px-RNW-480x466.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1632126482\";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\";}}'),(850,572,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.722554415787353576661189435981214046478271484375;s:5:\"bytes\";i:409230;s:11:\"size_before\";i:1531403;s:10:\"size_after\";i:1122173;s:4:\"time\";d:1.9200000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:24763;s:11:\"size_before\";i:34388;s:10:\"size_after\";i:9625;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:25472;s:11:\"size_before\";i:93093;s:10:\"size_after\";i:67621;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.849999999999994315658113919198513031005859375;s:5:\"bytes\";i:24660;s:11:\"size_before\";i:28394;s:10:\"size_after\";i:3734;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.75;s:5:\"bytes\";i:25186;s:11:\"size_before\";i:66719;s:10:\"size_after\";i:41533;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:26272;s:11:\"size_before\";i:164428;s:10:\"size_after\";i:138156;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:27168;s:11:\"size_before\";i:257794;s:10:\"size_after\";i:230626;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:24751;s:11:\"size_before\";i:34895;s:10:\"size_after\";i:10144;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:25244;s:11:\"size_before\";i:75662;s:10:\"size_after\";i:50418;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.650000000000005684341886080801486968994140625;s:5:\"bytes\";i:24834;s:11:\"size_before\";i:36177;s:10:\"size_after\";i:11343;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:24929;s:11:\"size_before\";i:42192;s:10:\"size_after\";i:17263;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:25642;s:11:\"size_before\";i:99365;s:10:\"size_after\";i:73723;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:54.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25009;s:11:\"size_before\";i:46140;s:10:\"size_after\";i:21131;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:28984;s:11:\"size_before\";i:294193;s:10:\"size_after\";i:265209;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:25777;s:11:\"size_before\";i:125251;s:10:\"size_after\";i:99474;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:25501;s:11:\"size_before\";i:88065;s:10:\"size_after\";i:62564;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:25038;s:11:\"size_before\";i:44647;s:10:\"size_after\";i:19609;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(921,642,'_wp_attached_file','2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg'),(922,642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2500;s:4:\"file\";s:39:\"2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"Morlon_MG_9412-HEAD-2500PX2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"Morlon_MG_9412-HEAD-2500PX2-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Morlon_MG_9412-HEAD-2500PX2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(923,642,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.955602061332867069864960285485722124576568603515625;s:5:\"bytes\";i:110762;s:11:\"size_before\";i:2800130;s:10:\"size_after\";i:2689368;s:4:\"time\";d:1.6300000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1099;s:11:\"size_before\";i:15803;s:10:\"size_after\";i:14704;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:6296;s:11:\"size_before\";i:159226;s:10:\"size_after\";i:152930;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:745;s:11:\"size_before\";i:5771;s:10:\"size_after\";i:5026;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3842;s:11:\"size_before\";i:88509;s:10:\"size_after\";i:84667;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:13350;s:11:\"size_before\";i:359966;s:10:\"size_after\";i:346616;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5;s:5:\"bytes\";i:21897;s:11:\"size_before\";i:625596;s:10:\"size_after\";i:603699;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:16837;s:10:\"size_after\";i:15693;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4472;s:11:\"size_before\";i:111187;s:10:\"size_after\";i:106715;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1181;s:11:\"size_before\";i:18725;s:10:\"size_after\";i:17544;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5;s:5:\"bytes\";i:1676;s:11:\"size_before\";i:30490;s:10:\"size_after\";i:28814;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:7068;s:11:\"size_before\";i:177659;s:10:\"size_after\";i:170591;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:1952;s:11:\"size_before\";i:37151;s:10:\"size_after\";i:35199;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:28468;s:11:\"size_before\";i:720611;s:10:\"size_after\";i:692143;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9599;s:11:\"size_before\";i:250501;s:10:\"size_after\";i:240902;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:6056;s:11:\"size_before\";i:146736;s:10:\"size_after\";i:140680;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1917;s:11:\"size_before\";i:35362;s:10:\"size_after\";i:33445;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(946,658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2304;s:4:\"file\";s:37:\"2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-260x300.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"LADY-P-IMG_2221-2000PX-FQ-889x1024.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-768x885.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:885;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"LADY-P-IMG_2221-2000PX-FQ-1333x1536.jpg\";s:5:\"width\";i:1333;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"LADY-P-IMG_2221-2000PX-FQ-1778x2048.jpg\";s:5:\"width\";i:1778;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"LADY-P-IMG_2221-2000PX-FQ-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:39:\"LADY-P-IMG_2221-2000PX-FQ-1080x1244.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"LADY-P-IMG_2221-2000PX-FQ-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:39:\"LADY-P-IMG_2221-2000PX-FQ-1280x1475.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"LADY-P-IMG_2221-2000PX-FQ-980x1129.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"LADY-P-IMG_2221-2000PX-FQ-480x553.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(947,658,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.931718400985904526834247008082456886768341064453125;s:5:\"bytes\";i:42630;s:11:\"size_before\";i:1454096;s:10:\"size_after\";i:1411466;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:13188;s:10:\"size_after\";i:12142;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2577;s:11:\"size_before\";i:84757;s:10:\"size_after\";i:82180;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:886;s:11:\"size_before\";i:5931;s:10:\"size_after\";i:5045;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2020;s:11:\"size_before\";i:66502;s:10:\"size_after\";i:64482;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:4643;s:11:\"size_before\";i:172296;s:10:\"size_after\";i:167653;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7710;s:11:\"size_before\";i:289158;s:10:\"size_after\";i:281448;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:788;s:11:\"size_before\";i:11162;s:10:\"size_after\";i:10374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:817;s:11:\"size_before\";i:46687;s:10:\"size_after\";i:45870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:862;s:11:\"size_before\";i:13289;s:10:\"size_after\";i:12427;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:962;s:11:\"size_before\";i:20004;s:10:\"size_after\";i:19042;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3327;s:11:\"size_before\";i:118624;s:10:\"size_after\";i:115297;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1247;s:11:\"size_before\";i:27845;s:10:\"size_after\";i:26598;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:7148;s:11:\"size_before\";i:291614;s:10:\"size_after\";i:284466;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4483;s:11:\"size_before\";i:160480;s:10:\"size_after\";i:155997;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2837;s:11:\"size_before\";i:100748;s:10:\"size_after\";i:97911;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1277;s:11:\"size_before\";i:31811;s:10:\"size_after\";i:30534;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(945,658,'_wp_attached_file','2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg'),(863,582,'_wp_attached_file','2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg'),(864,582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2135;s:6:\"height\";i:2560;s:4:\"file\";s:62:\"2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-854x1024.jpg\";s:5:\"width\";i:854;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-768x921.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-1281x1536.jpg\";s:5:\"width\";i:1281;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-1708x2048.jpg\";s:5:\"width\";i:1708;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-1080x1295.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-1280x1535.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:56:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-980x1175.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:47:\"Ash-the-king-and-queen-IMG_0001_2500px-CROP.jpg\";}'),(865,582,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.884213633360397377458639311953447759151458740234375;s:5:\"bytes\";i:71722;s:11:\"size_before\";i:2486709;s:10:\"size_after\";i:2414987;s:4:\"time\";d:3.869999999999999662492200513952411711215972900390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:16304;s:10:\"size_after\";i:15009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3677;s:11:\"size_before\";i:120790;s:10:\"size_after\";i:117113;s:4:\"time\";d:0.25;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:995;s:11:\"size_before\";i:7101;s:10:\"size_after\";i:6106;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:3339;s:11:\"size_before\";i:100747;s:10:\"size_after\";i:97408;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5691;s:11:\"size_before\";i:253501;s:10:\"size_after\";i:247810;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9121;s:11:\"size_before\";i:438710;s:10:\"size_after\";i:429589;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1434;s:11:\"size_before\";i:21377;s:10:\"size_after\";i:19943;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3500;s:11:\"size_before\";i:111890;s:10:\"size_after\";i:108390;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1534;s:11:\"size_before\";i:23446;s:10:\"size_after\";i:21912;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1892;s:11:\"size_before\";i:35642;s:10:\"size_after\";i:33750;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:4822;s:11:\"size_before\";i:184777;s:10:\"size_after\";i:179955;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1857;s:11:\"size_before\";i:36897;s:10:\"size_after\";i:35040;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:20771;s:11:\"size_before\";i:683015;s:10:\"size_after\";i:662244;s:4:\"time\";d:2.279999999999999804600747665972448885440826416015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:5513;s:11:\"size_before\";i:252677;s:10:\"size_after\";i:247164;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:4348;s:11:\"size_before\";i:154926;s:10:\"size_after\";i:150578;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1933;s:11:\"size_before\";i:44909;s:10:\"size_after\";i:42976;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(873,608,'_wp_attached_file','2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg'),(874,608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1753;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-205x300.jpg\";s:5:\"width\";i:205;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-701x1024.jpg\";s:5:\"width\";i:701;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-768x1121.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-1052x1536.jpg\";s:5:\"width\";i:1052;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-1403x2048.jpg\";s:5:\"width\";i:1403;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-1080x1577.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-1280x1869.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1869;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-980x1431.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"ASH-The-Queen-IMG_0008_-3000pXRNW2-480x701.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:38:\"ASH-The-Queen-IMG_0008_-3000pXRNW2.jpg\";}'),(875,608,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.802753886626188073449839066597633063793182373046875;s:5:\"bytes\";i:63434;s:11:\"size_before\";i:2263274;s:10:\"size_after\";i:2199840;s:4:\"time\";d:1.1100000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:12501;s:10:\"size_after\";i:11498;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2616;s:11:\"size_before\";i:92823;s:10:\"size_after\";i:90207;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:899;s:11:\"size_before\";i:6126;s:10:\"size_after\";i:5227;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:3008;s:11:\"size_before\";i:109264;s:10:\"size_after\";i:106256;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:4838;s:11:\"size_before\";i:191504;s:10:\"size_after\";i:186666;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:7776;s:11:\"size_before\";i:328827;s:10:\"size_after\";i:321051;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:17572;s:10:\"size_after\";i:16355;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2927;s:11:\"size_before\";i:98883;s:10:\"size_after\";i:95956;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:19513;s:10:\"size_after\";i:18231;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1556;s:11:\"size_before\";i:30944;s:10:\"size_after\";i:29388;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:4895;s:11:\"size_before\";i:201338;s:10:\"size_after\";i:196443;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1531;s:11:\"size_before\";i:32487;s:10:\"size_after\";i:30956;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:16991;s:11:\"size_before\";i:627910;s:10:\"size_after\";i:610919;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6689;s:11:\"size_before\";i:276396;s:10:\"size_after\";i:269707;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4237;s:11:\"size_before\";i:168602;s:10:\"size_after\";i:164365;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1969;s:11:\"size_before\";i:48584;s:10:\"size_after\";i:46615;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(876,392,'_edit_lock','1632186851:1'),(877,392,'_wp_attachment_backup_sizes','a:17:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2260;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-768x870.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-904x1024.jpg\";s:5:\"width\";i:904;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-1356x1536.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-1808x2048.jpg\";s:5:\"width\";i:1808;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:36:\"et-pb-post-main-image-fullwidth-orig\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-module-image-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-image-single-orig\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-1080x1223.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:40:\"et-pb-gallery-module-image-portrait-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:42:\"et-pb-post-main-image-fullwidth-large-orig\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-image--responsive--desktop-orig\";a:4:{s:4:\"file\";s:46:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-1280x1450.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:36:\"et-pb-image--responsive--tablet-orig\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-980x1110.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-image--responsive--phone-orig\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-4000PX-CROP-480x544.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(878,392,'_edit_last','1'),(879,616,'_itsec_dashboard_card','banned-users-list'),(880,616,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:4;}s:4:\"wide\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:3;}s:5:\"large\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:3;}s:6:\"medium\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:3;}s:6:\"mobile\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:3;}}'),(881,616,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:6;s:1:\"y\";i:2;}s:4:\"wide\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:2;}s:5:\"large\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:8;}s:6:\"medium\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:14;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:32;}}'),(882,616,'_itsec_dashboard_card_settings','a:0:{}'),(883,617,'_itsec_dashboard_card','database-backup'),(884,617,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:4:\"wide\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:5:\"large\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:6:\"medium\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:6:\"mobile\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}}'),(885,617,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:2;}s:4:\"wide\";a:2:{s:1:\"x\";i:3;s:1:\"y\";i:4;}s:5:\"large\";a:2:{s:1:\"x\";i:2;s:1:\"y\";i:0;}s:6:\"medium\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:12;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:24;}}'),(886,617,'_itsec_dashboard_card_settings','a:0:{}'),(887,618,'_itsec_dashboard_card','brute-force'),(888,618,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:3;s:1:\"h\";i:2;}s:4:\"wide\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:5:\"large\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:6:\"medium\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:6:\"mobile\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}}'),(889,618,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:4;}s:4:\"wide\";a:2:{s:1:\"x\";i:3;s:1:\"y\";i:2;}s:5:\"large\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:4;}s:6:\"medium\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:6;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:10;}}'),(890,618,'_itsec_dashboard_card_settings','a:0:{}'),(891,619,'_itsec_dashboard_card','banned-users'),(892,619,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:4:\"wide\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:5:\"large\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:6:\"medium\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:6:\"mobile\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}}'),(893,619,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:4;s:1:\"y\";i:2;}s:4:\"wide\";a:2:{s:1:\"x\";i:5;s:1:\"y\";i:0;}s:5:\"large\";a:2:{s:1:\"x\";i:2;s:1:\"y\";i:4;}s:6:\"medium\";a:2:{s:1:\"x\";i:1;s:1:\"y\";i:0;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:4;}}'),(894,619,'_itsec_dashboard_card_settings','a:0:{}'),(895,620,'_itsec_dashboard_card','lockout'),(896,620,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:4:\"wide\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:5:\"large\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:6:\"medium\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}s:6:\"mobile\";a:2:{s:1:\"w\";i:1;s:1:\"h\";i:2;}}'),(897,620,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:2;s:1:\"y\";i:2;}s:4:\"wide\";a:2:{s:1:\"x\";i:4;s:1:\"y\";i:0;}s:5:\"large\";a:2:{s:1:\"x\";i:1;s:1:\"y\";i:0;}s:6:\"medium\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:0;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:2;}}'),(898,620,'_itsec_dashboard_card_settings','a:0:{}'),(899,621,'_itsec_dashboard_card','malware-scan'),(900,621,'_itsec_dashboard_card_size','a:5:{s:4:\"huge\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:4:\"wide\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:5:\"large\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:6:\"medium\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}s:6:\"mobile\";a:2:{s:1:\"w\";i:2;s:1:\"h\";i:2;}}'),(901,621,'_itsec_dashboard_card_position','a:5:{s:4:\"huge\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:0;}s:4:\"wide\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:0;}s:5:\"large\";a:2:{s:1:\"x\";i:2;s:1:\"y\";i:2;}s:6:\"medium\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:2;}s:6:\"mobile\";a:2:{s:1:\"x\";i:0;s:1:\"y\";i:6;}}'),(902,621,'_itsec_dashboard_card_settings','a:0:{}'),(903,622,'_wp_attached_file','2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg'),(904,622,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1505;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-176x300.jpg\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"STEPHANIE-IMG_2526-3500PX-RNW-602x1024.jpg\";s:5:\"width\";i:602;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"STEPHANIE-IMG_2526-3500PX-RNW-768x1306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"STEPHANIE-IMG_2526-3500PX-RNW-903x1536.jpg\";s:5:\"width\";i:903;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"STEPHANIE-IMG_2526-3500PX-RNW-1204x2048.jpg\";s:5:\"width\";i:1204;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"STEPHANIE-IMG_2526-3500PX-RNW-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"STEPHANIE-IMG_2526-3500PX-RNW-1080x1837.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1837;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"STEPHANIE-IMG_2526-3500PX-RNW-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"STEPHANIE-IMG_2526-3500PX-RNW-1280x2177.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"STEPHANIE-IMG_2526-3500PX-RNW-980x1667.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"STEPHANIE-IMG_2526-3500PX-RNW-480x816.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:33:\"STEPHANIE-IMG_2526-3500PX-RNW.jpg\";}'),(905,622,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.631482564564411319452119641937315464019775390625;s:5:\"bytes\";i:61609;s:11:\"size_before\";i:1330222;s:10:\"size_after\";i:1268613;s:4:\"time\";d:1.8800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:883;s:11:\"size_before\";i:7616;s:10:\"size_after\";i:6733;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2072;s:11:\"size_before\";i:46673;s:10:\"size_after\";i:44601;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:859;s:11:\"size_before\";i:4558;s:10:\"size_after\";i:3699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2934;s:11:\"size_before\";i:70413;s:10:\"size_after\";i:67479;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3786;s:11:\"size_before\";i:92711;s:10:\"size_after\";i:88925;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5811;s:11:\"size_before\";i:154037;s:10:\"size_after\";i:148226;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1178;s:11:\"size_before\";i:11979;s:10:\"size_after\";i:10801;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4290;s:11:\"size_before\";i:67655;s:10:\"size_after\";i:63365;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1260;s:11:\"size_before\";i:13169;s:10:\"size_after\";i:11909;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1624;s:11:\"size_before\";i:20185;s:10:\"size_after\";i:18561;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:5006;s:11:\"size_before\";i:126888;s:10:\"size_after\";i:121882;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1260;s:11:\"size_before\";i:20209;s:10:\"size_after\";i:18949;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:18339;s:11:\"size_before\";i:383035;s:10:\"size_after\";i:364696;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6504;s:11:\"size_before\";i:171669;s:10:\"size_after\";i:165165;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4188;s:11:\"size_before\";i:107147;s:10:\"size_after\";i:102959;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:1615;s:11:\"size_before\";i:32278;s:10:\"size_after\";i:30663;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(951,662,'_wp_attached_file','2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg'),(952,662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1696;s:6:\"height\";i:2560;s:4:\"file\";s:47:\"2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"IMG_4142-PR-Suite-2000PX-FQ2-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"IMG_4142-PR-Suite-2000PX-FQ2-768x1160.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"IMG_4142-PR-Suite-2000PX-FQ2-1017x1536.jpg\";s:5:\"width\";i:1017;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"IMG_4142-PR-Suite-2000PX-FQ2-1356x2048.jpg\";s:5:\"width\";i:1356;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"IMG_4142-PR-Suite-2000PX-FQ2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"IMG_4142-PR-Suite-2000PX-FQ2-1080x1631.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"IMG_4142-PR-Suite-2000PX-FQ2-1985x1800.jpg\";s:5:\"width\";i:1985;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"IMG_4142-PR-Suite-2000PX-FQ2-1280x1932.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1932;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"IMG_4142-PR-Suite-2000PX-FQ2-980x1479.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-FQ2-480x725.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633564281\";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:14:\"original_image\";s:32:\"IMG_4142-PR-Suite-2000PX-FQ2.jpg\";}'),(953,662,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.44119848865837951734647504054009914398193359375;s:5:\"bytes\";i:451904;s:11:\"size_before\";i:2210751;s:10:\"size_after\";i:1758847;s:4:\"time\";d:0.87000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:25132;s:11:\"size_before\";i:34903;s:10:\"size_after\";i:9771;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:26537;s:11:\"size_before\";i:95163;s:10:\"size_after\";i:68626;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:83.2300000000000039790393202565610408782958984375;s:5:\"bytes\";i:25073;s:11:\"size_before\";i:30124;s:10:\"size_after\";i:5051;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:26983;s:11:\"size_before\";i:112498;s:10:\"size_after\";i:85515;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:29309;s:11:\"size_before\";i:175047;s:10:\"size_after\";i:145738;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:32662;s:11:\"size_before\";i:294111;s:10:\"size_after\";i:261449;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.75;s:5:\"bytes\";i:25276;s:11:\"size_before\";i:40936;s:10:\"size_after\";i:15660;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:27651;s:11:\"size_before\";i:113585;s:10:\"size_after\";i:85934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:59.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:25334;s:11:\"size_before\";i:42582;s:10:\"size_after\";i:17248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25593;s:11:\"size_before\";i:52023;s:10:\"size_after\";i:26430;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:29793;s:11:\"size_before\";i:194000;s:10:\"size_after\";i:164207;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:25451;s:11:\"size_before\";i:51800;s:10:\"size_after\";i:26349;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:40548;s:11:\"size_before\";i:481951;s:10:\"size_after\";i:441403;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:32024;s:11:\"size_before\";i:263346;s:10:\"size_after\";i:231322;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:28908;s:11:\"size_before\";i:164613;s:10:\"size_after\";i:135705;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:40;s:5:\"bytes\";i:25630;s:11:\"size_before\";i:64069;s:10:\"size_after\";i:38439;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(3407,1518,'post_doclosebtn_text_color','#000000'),(3408,1518,'post_doclosebtn_bg_color','#ffffff'),(3409,1518,'post_doclosebtn_fontsize','102'),(3410,1518,'post_doclosebtn_borderradius',''),(3411,1518,'post_doclosebtn_padding','15'),(3412,1518,'do_enable_scheduling','0'),(2989,1363,'_wp_attached_file','2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg'),(2990,1363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2269;s:4:\"file\";s:49:\"2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1024x929.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:929;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-768x697.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:697;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1536x1394.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-2048x1859.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1859;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:50:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:50:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1080x980.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1280x1162.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-980x889.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:889;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:49:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-480x436.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2991,1363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.934968440148043811177558382041752338409423828125;s:5:\"bytes\";i:95377;s:11:\"size_before\";i:1932677;s:10:\"size_after\";i:1837300;s:4:\"time\";d:0.9200000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:882;s:11:\"size_before\";i:9898;s:10:\"size_after\";i:9016;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:4975;s:11:\"size_before\";i:101877;s:10:\"size_after\";i:96902;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:662;s:11:\"size_before\";i:4145;s:10:\"size_after\";i:3483;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:3040;s:11:\"size_before\";i:56442;s:10:\"size_after\";i:53402;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11021;s:11:\"size_before\";i:236217;s:10:\"size_after\";i:225196;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:19621;s:11:\"size_before\";i:422228;s:10:\"size_after\";i:402607;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:12394;s:10:\"size_after\";i:11383;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3404;s:11:\"size_before\";i:76917;s:10:\"size_after\";i:73513;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1057;s:11:\"size_before\";i:13705;s:10:\"size_after\";i:12648;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1391;s:11:\"size_before\";i:21527;s:10:\"size_after\";i:20136;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5621;s:11:\"size_before\";i:113904;s:10:\"size_after\";i:108283;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:29121;s:10:\"size_after\";i:27365;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:27096;s:11:\"size_before\";i:556193;s:10:\"size_after\";i:529097;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7685;s:11:\"size_before\";i:162216;s:10:\"size_after\";i:154531;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:4683;s:11:\"size_before\";i:93104;s:10:\"size_after\";i:88421;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1472;s:11:\"size_before\";i:22789;s:10:\"size_after\";i:21317;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(912,631,'_wp_attached_file','2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg'),(913,631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1739;s:6:\"height\";i:2560;s:4:\"file\";s:51:\"2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Marvelous-rolling-MG_8545-2000px-696x1024.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Marvelous-rolling-MG_8545-2000px-768x1131.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Marvelous-rolling-MG_8545-2000px-1043x1536.jpg\";s:5:\"width\";i:1043;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Marvelous-rolling-MG_8545-2000px-1391x2048.jpg\";s:5:\"width\";i:1391;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Marvelous-rolling-MG_8545-2000px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Marvelous-rolling-MG_8545-2000px-1080x1590.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1590;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Marvelous-rolling-MG_8545-2000px-1978x1800.jpg\";s:5:\"width\";i:1978;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Marvelous-rolling-MG_8545-2000px-1280x1884.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1884;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Marvelous-rolling-MG_8545-2000px-980x1443.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Marvelous-rolling-MG_8545-2000px-480x707.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1622935315\";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:14:\"original_image\";s:36:\"Marvelous-rolling-MG_8545-2000px.jpg\";}'),(914,631,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.562662082778683014794296468608081340789794921875;s:5:\"bytes\";i:393307;s:11:\"size_before\";i:1376997;s:10:\"size_after\";i:983690;s:4:\"time\";d:1.340000000000000301980662698042578995227813720703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:77.1200000000000045474735088646411895751953125;s:5:\"bytes\";i:22965;s:11:\"size_before\";i:29779;s:10:\"size_after\";i:6814;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:23957;s:11:\"size_before\";i:67156;s:10:\"size_after\";i:43199;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.650000000000005684341886080801486968994140625;s:5:\"bytes\";i:22954;s:11:\"size_before\";i:26800;s:10:\"size_after\";i:3846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:24062;s:11:\"size_before\";i:75130;s:10:\"size_after\";i:51068;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:25022;s:11:\"size_before\";i:110717;s:10:\"size_after\";i:85695;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:26767;s:11:\"size_before\";i:169875;s:10:\"size_after\";i:143108;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.2699999999999960209606797434389591217041015625;s:5:\"bytes\";i:23116;s:11:\"size_before\";i:33861;s:10:\"size_after\";i:10745;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:24633;s:11:\"size_before\";i:77222;s:10:\"size_after\";i:52589;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23184;s:11:\"size_before\";i:35201;s:10:\"size_after\";i:12017;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:23330;s:11:\"size_before\";i:41604;s:10:\"size_after\";i:18274;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:25245;s:11:\"size_before\";i:116375;s:10:\"size_after\";i:91130;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:23192;s:11:\"size_before\";i:40382;s:10:\"size_after\";i:17190;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:30557;s:11:\"size_before\";i:253386;s:10:\"size_after\";i:222829;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:26022;s:11:\"size_before\";i:149733;s:10:\"size_after\";i:123711;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:24850;s:11:\"size_before\";i:101900;s:10:\"size_after\";i:77050;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:23451;s:11:\"size_before\";i:47876;s:10:\"size_after\";i:24425;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(2956,1344,'_wp_attached_file','2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg'),(2957,1344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1632;s:4:\"file\";s:47:\"2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-6000PX-2-1024x653.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-6000PX-2-1536x979.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:979;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-6000PX-2-2048x1306.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-6000PX-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-6000PX-2-1080x689.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-6000PX-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-6000PX-2-1280x816.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-980x625.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-6000PX-2-480x306.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1634955056\";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:14:\"original_image\";s:32:\"CNJ-VISION-IMG_4553-6000PX-2.jpg\";}'),(2958,1344,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.183430663430169005323477904312312602996826171875;s:5:\"bytes\";i:367362;s:11:\"size_before\";i:1303468;s:10:\"size_after\";i:936106;s:4:\"time\";d:0.8000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:21039;s:11:\"size_before\";i:25491;s:10:\"size_after\";i:4452;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:21159;s:11:\"size_before\";i:50554;s:10:\"size_after\";i:29395;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:88.150000000000005684341886080801486968994140625;s:5:\"bytes\";i:21079;s:11:\"size_before\";i:23914;s:10:\"size_after\";i:2835;s:4:\"time\";i:0;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:53.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:20974;s:11:\"size_before\";i:38874;s:10:\"size_after\";i:17900;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:21636;s:11:\"size_before\";i:90678;s:10:\"size_after\";i:69042;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:22813;s:11:\"size_before\";i:157245;s:10:\"size_after\";i:134432;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:76.1200000000000045474735088646411895751953125;s:5:\"bytes\";i:21011;s:11:\"size_before\";i:27604;s:10:\"size_after\";i:6593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.36999999999999744204615126363933086395263671875;s:5:\"bytes\";i:21174;s:11:\"size_before\";i:53786;s:10:\"size_after\";i:32612;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.2600000000000051159076974727213382720947265625;s:5:\"bytes\";i:21047;s:11:\"size_before\";i:28343;s:10:\"size_after\";i:7296;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.4800000000000039790393202565610408782958984375;s:5:\"bytes\";i:21050;s:11:\"size_before\";i:32145;s:10:\"size_after\";i:11095;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:21068;s:11:\"size_before\";i:53879;s:10:\"size_after\";i:32811;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:21134;s:11:\"size_before\";i:34854;s:10:\"size_after\";i:13720;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24989;s:11:\"size_before\";i:299082;s:10:\"size_after\";i:274093;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:21312;s:11:\"size_before\";i:67046;s:10:\"size_after\";i:45734;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:21056;s:11:\"size_before\";i:48386;s:10:\"size_after\";i:27330;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.8799999999999954525264911353588104248046875;s:5:\"bytes\";i:21049;s:11:\"size_before\";i:29697;s:10:\"size_after\";i:8648;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:23772;s:11:\"size_before\";i:241890;s:10:\"size_after\";i:218118;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(924,644,'_wp_attached_file','2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg'),(925,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2473;s:4:\"file\";s:44:\"2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-1024x1013.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1013;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-768x760.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-1536x1519.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-2048x2026.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Lucie_9282-Dark-Grey-2500PX-FREQ-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-1080x1068.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1068;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Lucie_9282-Dark-Grey-2500PX-FREQ-1280x1266.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-980x969.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Lucie_9282-Dark-Grey-2500PX-FREQ-480x475.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(926,644,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.76290955650788649933247143053449690341949462890625;s:5:\"bytes\";i:9736;s:11:\"size_before\";i:1276167;s:10:\"size_after\";i:1266431;s:4:\"time\";d:1.060000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:736;s:11:\"size_before\";i:12454;s:10:\"size_after\";i:11718;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:94;s:11:\"size_before\";i:81377;s:10:\"size_after\";i:81283;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:714;s:11:\"size_before\";i:5104;s:10:\"size_after\";i:4390;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:371;s:11:\"size_before\";i:50704;s:10:\"size_after\";i:50333;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157595;s:10:\"size_after\";i:157595;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:253799;s:10:\"size_after\";i:253799;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:683;s:11:\"size_before\";i:13028;s:10:\"size_after\";i:12345;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:142;s:11:\"size_before\";i:60292;s:10:\"size_after\";i:60150;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:748;s:11:\"size_before\";i:14672;s:10:\"size_after\";i:13924;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:720;s:11:\"size_before\";i:21888;s:10:\"size_after\";i:21168;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88621;s:10:\"size_after\";i:88621;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:773;s:11:\"size_before\";i:25676;s:10:\"size_after\";i:24903;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3758;s:11:\"size_before\";i:273130;s:10:\"size_after\";i:269372;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:117082;s:10:\"size_after\";i:117082;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1600000000000000033306690738754696212708950042724609375;s:5:\"bytes\";i:119;s:11:\"size_before\";i:75992;s:10:\"size_after\";i:75873;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:878;s:11:\"size_before\";i:24753;s:10:\"size_after\";i:23875;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(933,650,'_wp_attached_file','2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg'),(934,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2184;s:4:\"file\";s:52:\"2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-938x1024.jpg\";s:5:\"width\";i:938;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-768x839.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-1407x1536.jpg\";s:5:\"width\";i:1407;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:54:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-1875x2048.jpg\";s:5:\"width\";i:1875;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:54:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-1080x1179.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:54:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:54:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-1280x1398.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:53:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-980x1070.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:52:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-480x524.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(935,650,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.23695618034384668959546615951694548130035400390625;s:5:\"bytes\";i:64928;s:11:\"size_before\";i:2005835;s:10:\"size_after\";i:1940907;s:4:\"time\";d:1.3700000000000003286260152890463359653949737548828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1088;s:11:\"size_before\";i:15222;s:10:\"size_after\";i:14134;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2847;s:11:\"size_before\";i:104688;s:10:\"size_after\";i:101841;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:934;s:11:\"size_before\";i:6436;s:10:\"size_after\";i:5502;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2093;s:11:\"size_before\";i:73918;s:10:\"size_after\";i:71825;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6856;s:11:\"size_before\";i:227772;s:10:\"size_after\";i:220916;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13509;s:11:\"size_before\";i:417447;s:10:\"size_after\";i:403938;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1047;s:11:\"size_before\";i:17346;s:10:\"size_after\";i:16299;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2440;s:11:\"size_before\";i:86978;s:10:\"size_after\";i:84538;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1130;s:11:\"size_before\";i:19416;s:10:\"size_after\";i:18286;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1281;s:11:\"size_before\";i:29405;s:10:\"size_after\";i:28124;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:3917;s:11:\"size_before\";i:135724;s:10:\"size_after\";i:131807;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1306;s:11:\"size_before\";i:33124;s:10:\"size_after\";i:31818;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16379;s:11:\"size_before\";i:502031;s:10:\"size_after\";i:485652;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5670;s:11:\"size_before\";i:188461;s:10:\"size_after\";i:182791;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3064;s:11:\"size_before\";i:113149;s:10:\"size_after\";i:110085;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1367;s:11:\"size_before\";i:34718;s:10:\"size_after\";i:33351;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(942,656,'_wp_attached_file','2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg'),(943,656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2259;s:6:\"height\";i:2348;s:4:\"file\";s:43:\"2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-289x300.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-985x1024.jpg\";s:5:\"width\";i:985;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-768x798.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-1478x1536.jpg\";s:5:\"width\";i:1478;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-1970x2048.jpg\";s:5:\"width\";i:1970;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-1080x1123.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-2259x1800.jpg\";s:5:\"width\";i:2259;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-1280x1330.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-980x1019.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"ANDREW-BOSS-IMG_2437-2000PX-FQ2-480x499.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(939,654,'_wp_attached_file','2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg'),(940,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1391;s:6:\"height\";i:1733;s:4:\"file\";s:44:\"2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-2000PX-FQ2-822x1024.jpg\";s:5:\"width\";i:822;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-768x957.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:957;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-2000PX-FQ2-1233x1536.jpg\";s:5:\"width\";i:1233;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-2000PX-FQ2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-2000PX-FQ2-1080x1346.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Monique-smile_MG_9348-2000PX-FQ2-1280x1595.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1595;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Monique-smile_MG_9348-2000PX-FQ2-980x1221.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Monique-smile_MG_9348-2000PX-FQ2-480x598.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633559487\";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\";}}'),(941,654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.525636139934452017996591166593134403228759765625;s:5:\"bytes\";i:392982;s:11:\"size_before\";i:1377645;s:10:\"size_after\";i:984663;s:4:\"time\";d:1.010000000000000230926389122032560408115386962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:70.349999999999994315658113919198513031005859375;s:5:\"bytes\";i:26399;s:11:\"size_before\";i:37526;s:10:\"size_after\";i:11127;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:28459;s:11:\"size_before\";i:112089;s:10:\"size_after\";i:83630;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.909999999999996589394868351519107818603515625;s:5:\"bytes\";i:26266;s:11:\"size_before\";i:30935;s:10:\"size_after\";i:4669;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:28113;s:11:\"size_before\";i:101988;s:10:\"size_after\";i:73875;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:31299;s:11:\"size_before\";i:213969;s:10:\"size_after\";i:182670;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.849999999999994315658113919198513031005859375;s:5:\"bytes\";i:26346;s:11:\"size_before\";i:38267;s:10:\"size_after\";i:11921;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:27885;s:11:\"size_before\";i:96613;s:10:\"size_after\";i:68728;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:26362;s:11:\"size_before\";i:39927;s:10:\"size_after\";i:13565;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:26500;s:11:\"size_before\";i:47753;s:10:\"size_after\";i:21253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:30236;s:11:\"size_before\";i:172131;s:10:\"size_after\";i:141895;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.36999999999999744204615126363933086395263671875;s:5:\"bytes\";i:26695;s:11:\"size_before\";i:51968;s:10:\"size_after\";i:25273;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:32089;s:11:\"size_before\";i:228420;s:10:\"size_after\";i:196331;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:29546;s:11:\"size_before\";i:147142;s:10:\"size_after\";i:117596;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:26787;s:11:\"size_before\";i:58917;s:10:\"size_after\";i:32130;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(944,656,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.74870929197055602344335056841373443603515625;s:5:\"bytes\";i:10627;s:11:\"size_before\";i:1419376;s:10:\"size_after\";i:1408749;s:4:\"time\";d:1.1900000000000001687538997430237941443920135498046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:902;s:11:\"size_before\";i:11617;s:10:\"size_after\";i:10715;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.429999999999999993338661852249060757458209991455078125;s:5:\"bytes\";i:361;s:11:\"size_before\";i:83443;s:10:\"size_after\";i:83082;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:868;s:11:\"size_before\";i:5012;s:10:\"size_after\";i:4144;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.25;s:5:\"bytes\";i:669;s:11:\"size_before\";i:53700;s:10:\"size_after\";i:53031;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:171515;s:10:\"size_after\";i:171515;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:283205;s:10:\"size_after\";i:283205;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:937;s:11:\"size_before\";i:13738;s:10:\"size_after\";i:12801;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.0900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:769;s:11:\"size_before\";i:70545;s:10:\"size_after\";i:69776;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:15104;s:10:\"size_after\";i:14101;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1015;s:11:\"size_before\";i:22708;s:10:\"size_after\";i:21693;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98105;s:10:\"size_after\";i:98105;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:904;s:11:\"size_before\";i:24623;s:10:\"size_after\";i:23719;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:2019;s:11:\"size_before\";i:325725;s:10:\"size_after\";i:323706;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132850;s:10:\"size_after\";i:132850;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.289999999999999980015985556747182272374629974365234375;s:5:\"bytes\";i:237;s:11:\"size_before\";i:82714;s:10:\"size_after\";i:82477;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:943;s:11:\"size_before\";i:24772;s:10:\"size_after\";i:23829;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(954,665,'_wp_attached_file','2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg'),(955,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1668;s:6:\"height\";i:2310;s:4:\"file\";s:47:\"2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-739x1024.jpg\";s:5:\"width\";i:739;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-768x1064.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1064;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1109x1536.jpg\";s:5:\"width\";i:1109;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1479x2048.jpg\";s:5:\"width\";i:1479;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1080x1496.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:49:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1668x1800.jpg\";s:5:\"width\";i:1668;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-1280x1773.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1773;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-980x1357.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1357;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP-480x665.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633549438\";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\";}}'),(956,665,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.0052345605026147268290515057742595672607421875;s:5:\"bytes\";i:407235;s:11:\"size_before\";i:1628599;s:10:\"size_after\";i:1221364;s:4:\"time\";d:1.410000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24684;s:11:\"size_before\";i:34143;s:10:\"size_after\";i:9459;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:25494;s:11:\"size_before\";i:88985;s:10:\"size_after\";i:63491;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:24597;s:11:\"size_before\";i:28889;s:10:\"size_after\";i:4292;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25660;s:11:\"size_before\";i:93059;s:10:\"size_after\";i:67399;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:26070;s:11:\"size_before\";i:151294;s:10:\"size_after\";i:125224;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26421;s:11:\"size_before\";i:228235;s:10:\"size_after\";i:201814;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.099999999999994315658113919198513031005859375;s:5:\"bytes\";i:24638;s:11:\"size_before\";i:36181;s:10:\"size_after\";i:11543;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:25248;s:11:\"size_before\";i:84309;s:10:\"size_after\";i:59061;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.5100000000000051159076974727213382720947265625;s:5:\"bytes\";i:24674;s:11:\"size_before\";i:37667;s:10:\"size_after\";i:12993;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24719;s:11:\"size_before\";i:44655;s:10:\"size_after\";i:19936;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:26119;s:11:\"size_before\";i:145848;s:10:\"size_after\";i:119729;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:24870;s:11:\"size_before\";i:47669;s:10:\"size_after\";i:22799;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:26989;s:11:\"size_before\";i:237876;s:10:\"size_after\";i:210887;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:26122;s:11:\"size_before\";i:185272;s:10:\"size_after\";i:159150;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:25907;s:11:\"size_before\";i:127658;s:10:\"size_after\";i:101751;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.00999999999999801048033987171947956085205078125;s:5:\"bytes\";i:25023;s:11:\"size_before\";i:56859;s:10:\"size_after\";i:31836;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(973,668,'_edit_last','1'),(974,668,'_wp_page_template','default'),(3033,1385,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.448217020445074609824587241746485233306884765625;s:5:\"bytes\";i:43099;s:11:\"size_before\";i:1760424;s:10:\"size_after\";i:1717325;s:4:\"time\";d:1.5100000000000004529709940470638684928417205810546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1458;s:11:\"size_before\";i:21203;s:10:\"size_after\";i:19745;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:3462;s:11:\"size_before\";i:135263;s:10:\"size_after\";i:131801;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:10380;s:10:\"size_after\";i:9367;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2863;s:11:\"size_before\";i:86441;s:10:\"size_after\";i:83578;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4367;s:11:\"size_before\";i:254979;s:10:\"size_after\";i:250612;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:5255;s:11:\"size_before\";i:410785;s:10:\"size_after\";i:405530;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1738;s:11:\"size_before\";i:34362;s:10:\"size_after\";i:32624;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:3778;s:11:\"size_before\";i:155625;s:10:\"size_after\";i:151847;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1738;s:11:\"size_before\";i:36539;s:10:\"size_after\";i:34801;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2119;s:11:\"size_before\";i:54403;s:10:\"size_after\";i:52284;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:3723;s:11:\"size_before\";i:147198;s:10:\"size_after\";i:143475;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1778;s:11:\"size_before\";i:51576;s:10:\"size_after\";i:49798;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:4308;s:11:\"size_before\";i:191485;s:10:\"size_after\";i:187177;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3393;s:11:\"size_before\";i:127073;s:10:\"size_after\";i:123680;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2106;s:11:\"size_before\";i:43112;s:10:\"size_after\";i:41006;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(960,673,'_wp_attached_file','2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg'),(961,673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1815;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-726x1024.jpg\";s:5:\"width\";i:726;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-768x1083.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1083;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1089x1536.jpg\";s:5:\"width\";i:1089;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1452x2048.jpg\";s:5:\"width\";i:1452;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1080x1523.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1985x1800.jpg\";s:5:\"width\";i:1985;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-1280x1805.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1805;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-980x1382.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"IMG_4142-PR-Suite-2000PX-FQ2-CP-480x677.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633564281\";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:14:\"original_image\";s:35:\"IMG_4142-PR-Suite-2000PX-FQ2-CP.jpg\";}'),(962,673,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.667324415688430150339627289213240146636962890625;s:5:\"bytes\";i:461893;s:11:\"size_before\";i:2234895;s:10:\"size_after\";i:1773002;s:4:\"time\";d:0.8800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.0199999999999960209606797434389591217041015625;s:5:\"bytes\";i:25479;s:11:\"size_before\";i:35878;s:10:\"size_after\";i:10399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.75;s:5:\"bytes\";i:27167;s:11:\"size_before\";i:101559;s:10:\"size_after\";i:74392;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:83.349999999999994315658113919198513031005859375;s:5:\"bytes\";i:25477;s:11:\"size_before\";i:30568;s:10:\"size_after\";i:5091;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:25;s:5:\"bytes\";i:27386;s:11:\"size_before\";i:109524;s:10:\"size_after\";i:82138;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:30147;s:11:\"size_before\";i:190233;s:10:\"size_after\";i:160086;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:34354;s:11:\"size_before\";i:321063;s:10:\"size_after\";i:286709;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:25623;s:11:\"size_before\";i:41450;s:10:\"size_after\";i:15827;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:28214;s:11:\"size_before\";i:113786;s:10:\"size_after\";i:85572;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:25689;s:11:\"size_before\";i:42781;s:10:\"size_after\";i:17092;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:25891;s:11:\"size_before\";i:52084;s:10:\"size_after\";i:26193;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:30261;s:11:\"size_before\";i:187425;s:10:\"size_after\";i:157164;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:25872;s:11:\"size_before\";i:52240;s:10:\"size_after\";i:26368;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:42488;s:11:\"size_before\";i:480625;s:10:\"size_after\";i:438137;s:4:\"time\";d:0.25;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:32461;s:11:\"size_before\";i:253306;s:10:\"size_after\";i:220845;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:29311;s:11:\"size_before\";i:159461;s:10:\"size_after\";i:130150;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:26073;s:11:\"size_before\";i:62912;s:10:\"size_after\";i:36839;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(963,676,'_wp_attached_file','2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg'),(964,676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2117;s:4:\"file\";s:53:\"2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-300x248.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-1024x847.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:847;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-768x635.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-1536x1270.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-2048x1693.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-1080x893.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:893;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-1280x1059.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1059;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-980x810.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-480x397.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633803852\";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:14:\"original_image\";s:38:\"IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP.jpg\";}'),(965,676,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.446943120404768023945507593452930450439453125;s:5:\"bytes\";i:364838;s:11:\"size_before\";i:1160170;s:10:\"size_after\";i:795332;s:4:\"time\";d:0.8600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.0400000000000062527760746888816356658935546875;s:5:\"bytes\";i:22263;s:11:\"size_before\";i:28167;s:10:\"size_after\";i:5904;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:22468;s:11:\"size_before\";i:60101;s:10:\"size_after\";i:37633;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:88.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:22304;s:11:\"size_before\";i:25191;s:10:\"size_after\";i:2887;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.5;s:5:\"bytes\";i:22130;s:11:\"size_before\";i:45633;s:10:\"size_after\";i:23503;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:23288;s:11:\"size_before\";i:104763;s:10:\"size_after\";i:81475;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:24870;s:11:\"size_before\";i:180572;s:10:\"size_after\";i:155702;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:75.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:22203;s:11:\"size_before\";i:29485;s:10:\"size_after\";i:7282;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:22477;s:11:\"size_before\";i:55945;s:10:\"size_after\";i:33468;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:73.68999999999999772626324556767940521240234375;s:5:\"bytes\";i:22206;s:11:\"size_before\";i:30136;s:10:\"size_after\";i:7930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.5;s:5:\"bytes\";i:22227;s:11:\"size_before\";i:33932;s:10:\"size_after\";i:11705;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:22427;s:11:\"size_before\";i:63834;s:10:\"size_after\";i:41407;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:22396;s:11:\"size_before\";i:36871;s:10:\"size_after\";i:14475;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:26075;s:11:\"size_before\";i:294109;s:10:\"size_after\";i:268034;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:22795;s:11:\"size_before\";i:79714;s:10:\"size_after\";i:56919;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.72999999999999687361196265555918216705322265625;s:5:\"bytes\";i:22460;s:11:\"size_before\";i:57988;s:10:\"size_after\";i:35528;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.9599999999999937472239253111183643341064453125;s:5:\"bytes\";i:22249;s:11:\"size_before\";i:33729;s:10:\"size_after\";i:11480;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2997,1368,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.05085888135723681813260554918088018894195556640625;s:5:\"bytes\";i:82099;s:11:\"size_before\";i:2026706;s:10:\"size_after\";i:1944607;s:4:\"time\";d:0.8600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1044;s:11:\"size_before\";i:13888;s:10:\"size_after\";i:12844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4193;s:11:\"size_before\";i:102406;s:10:\"size_after\";i:98213;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:805;s:11:\"size_before\";i:7226;s:10:\"size_after\";i:6421;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2846;s:11:\"size_before\";i:62646;s:10:\"size_after\";i:59800;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:7870;s:11:\"size_before\";i:215799;s:10:\"size_after\";i:207929;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:12579;s:11:\"size_before\";i:375506;s:10:\"size_after\";i:362927;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1236;s:11:\"size_before\";i:19426;s:10:\"size_after\";i:18190;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:4544;s:11:\"size_before\";i:101577;s:10:\"size_after\";i:97033;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1292;s:11:\"size_before\";i:21155;s:10:\"size_after\";i:19863;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1779;s:11:\"size_before\";i:33223;s:10:\"size_after\";i:31444;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4732;s:11:\"size_before\";i:113074;s:10:\"size_after\";i:108342;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2313;s:11:\"size_before\";i:45570;s:10:\"size_after\";i:43257;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:25311;s:11:\"size_before\";i:637965;s:10:\"size_after\";i:612654;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5934;s:11:\"size_before\";i:153348;s:10:\"size_after\";i:147414;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:4013;s:11:\"size_before\";i:95079;s:10:\"size_after\";i:91066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1608;s:11:\"size_before\";i:28818;s:10:\"size_after\";i:27210;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2969,1355,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.64332423204600086563687000307254493236541748046875;s:5:\"bytes\";i:117997;s:11:\"size_before\";i:2090913;s:10:\"size_after\";i:1972916;s:4:\"time\";d:0.79000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:909;s:11:\"size_before\";i:10649;s:10:\"size_after\";i:9740;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5783;s:11:\"size_before\";i:109241;s:10:\"size_after\";i:103458;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:723;s:11:\"size_before\";i:4465;s:10:\"size_after\";i:3742;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3521;s:11:\"size_before\";i:60784;s:10:\"size_after\";i:57263;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13405;s:11:\"size_before\";i:252073;s:10:\"size_after\";i:238668;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24469;s:11:\"size_before\";i:450338;s:10:\"size_after\";i:425869;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1075;s:11:\"size_before\";i:13487;s:10:\"size_after\";i:12412;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4343;s:11:\"size_before\";i:84080;s:10:\"size_after\";i:79737;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:14870;s:10:\"size_after\";i:13746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1481;s:11:\"size_before\";i:23592;s:10:\"size_after\";i:22111;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6575;s:11:\"size_before\";i:121789;s:10:\"size_after\";i:115214;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1961;s:11:\"size_before\";i:33172;s:10:\"size_after\";i:31211;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:36381;s:11:\"size_before\";i:615478;s:10:\"size_after\";i:579097;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:9184;s:11:\"size_before\";i:172826;s:10:\"size_after\";i:163642;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5534;s:11:\"size_before\";i:99698;s:10:\"size_after\";i:94164;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1529;s:11:\"size_before\";i:24371;s:10:\"size_after\";i:22842;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2967,1355,'_wp_attached_file','2022/07/Francine-Boss-IMG_6435-CP.jpg'),(2968,1355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2202;s:4:\"file\";s:37:\"2022/07/Francine-Boss-IMG_6435-CP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Francine-Boss-IMG_6435-CP-1024x902.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-768x676.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"Francine-Boss-IMG_6435-CP-1536x1353.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"Francine-Boss-IMG_6435-CP-2048x1804.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Francine-Boss-IMG_6435-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Francine-Boss-IMG_6435-CP-1080x951.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"Francine-Boss-IMG_6435-CP-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:39:\"Francine-Boss-IMG_6435-CP-1280x1127.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-980x863.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:863;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"Francine-Boss-IMG_6435-CP-480x423.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(975,668,'_et_pb_post_hide_nav','default'),(976,668,'_et_pb_page_layout','et_right_sidebar'),(977,668,'_et_pb_side_nav','off'),(978,668,'_et_pb_use_builder','on'),(979,668,'_et_pb_first_image',''),(980,668,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_18 et_section_regular et_pb_section--with-menu\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_14 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_2 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"88\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" alt=\"\" class=\"wp-image-1463\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu-2\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-1188 menu-item menu-item-type-post_type menu-item-object-page menu-item-1230\"><a href=\"https://flaphotography.com/products-photography/\">PRODUCTS PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_19 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_15\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">FREE STUDIO TIME<br />\n5 PROs &#8211; PROMO ENDS OCT 20 2021</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_20 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_row et_pb_row_16\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">CONDITIONS TO QUALIFY:<br />\n1. You are a business that sells clothing products2. You must agree to tag us on social media. </div>\n			</div>\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\" data-form_unique_id=\"\">\n				\n				\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Free Studio Time Sign Up</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://flaphotography.com/?s=\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Full Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Full Name\" pattern=\"[A-Z|a-z|s-]*\" title=\"Only letters allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone Number</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone Number\" pattern=\"[0-9s-]*\" title=\"Only numbers allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"who\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_who_0\" class=\"et_pb_contact_form_label\">Who are you?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Who are you?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_who_0_3_0\" class=\"input\" value=\"A Company, Business\" name=\"et_pb_contact_who_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"who\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_who_0_3_0\"><i></i>A Company, Business</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_who_0_3_1\" class=\"input\" value=\"Artist. Musician, Speaker\" name=\"et_pb_contact_who_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"who\"  data-id=\"0\">\n								<label for=\"et_pb_contact_who_0_3_1\"><i></i>Artist. Musician, Speaker</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;who&quot;,&quot;is&quot;,&quot;A Company, Business&quot;]]\" data-conditional-relation=\"any\" data-id=\"companyname\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_companyname_0\" class=\"et_pb_contact_form_label\">Name of your company?</label>\n				<input type=\"text\" id=\"et_pb_contact_companyname_0\" class=\"input\" value=\"\" name=\"et_pb_contact_companyname_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"companyname\" placeholder=\"Name of your company?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;who&quot;,&quot;is&quot;,&quot;A Company, Business&quot;]]\" data-conditional-relation=\"any\" data-id=\"yourneeds\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_yourneeds_0\" class=\"et_pb_contact_form_label\">Please checkmark your needs.</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_yourneeds_0\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"yourneeds\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Please checkmark your needs.</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_5_0\" class=\"input\" value=\"Corporate Headshots\" data-id=\"-1\">\n							<label for=\"et_pb_contact_yourneeds_5_0\"><i></i>Corporate Headshots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_5_1\" class=\"input\" value=\"Group Photos\" data-id=\"1\">\n							<label for=\"et_pb_contact_yourneeds_5_1\"><i></i>Group Photos</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_5_2\" class=\"input\" value=\"Photos of Products or Services\" data-id=\"2\">\n							<label for=\"et_pb_contact_yourneeds_5_2\"><i></i>Photos of Products or Services</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_5_3\" class=\"input\" value=\"Modeling Photos for Apparels\" data-id=\"3\">\n							<label for=\"et_pb_contact_yourneeds_5_3\"><i></i>Modeling Photos for Apparels</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last\" data-id=\"firsttime\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_firsttime_0\" class=\"et_pb_contact_form_label\">Is it your first time in a studio setting?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Is it your first time in a studio setting?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_0_6_0\" class=\"input\" value=\"Yes, it is.\" name=\"et_pb_contact_firsttime_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_firsttime_0_6_0\"><i></i>Yes, it is.</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_0_6_1\" class=\"input\" value=\"No, it is not.\" name=\"et_pb_contact_firsttime_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"0\">\n								<label for=\"et_pb_contact_firsttime_0_6_1\"><i></i>No, it is not.</label>\n							</span></span>\n					</span>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\" data-icon=\"&#x4e;\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"07da75d1eb\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_22 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_17\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_18_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_18 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_19_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_19 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_20_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_20 et_pb_bg_layout_light\" href=\"https://flaphotography.com/products-photography\" data-icon=\"&#x45;\">Products Photography</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_21_wrapper  et_pb_module \">\n				<a id=\"overlay_unique_id_1483\" class=\"et_pb_button et_pb_button_21 et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">PersonalIzed Offer</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_22_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_22 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_23_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_23 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_24_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_24 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_2 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_4 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_5 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/kcj_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_3 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(981,668,'_et_pb_truncate_post_date','2022-08-21 10:43:05'),(982,668,'_et_pb_old_content',''),(983,668,'_yoast_wpseo_estimated-reading-time-minutes',''),(984,668,'_edit_lock','1634690919:1'),(985,668,'_et_pb_built_for_post_type','page'),(986,668,'_et_pb_ab_subjects',''),(987,668,'_et_pb_enable_shortcode_tracking',''),(988,668,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"668\" /]'),(989,668,'_et_pb_custom_css',''),(990,668,'_et_pb_gutter_width','3'),(995,668,'_yoast_wpseo_content_score','60'),(992,668,'_global_colors_info','{}'),(993,668,'_et_builder_version','VB|Divi|4.9.7'),(994,668,'_et_pb_show_page_creation','off'),(1154,668,'_yoast_wpseo_meta-robots-nofollow','1'),(1152,79,'_yoast_wpseo_meta-robots-nofollow','1'),(1156,214,'_yoast_wpseo_meta-robots-nofollow','1'),(1000,208,'_wp_old_date','2021-09-17'),(1001,213,'_wp_old_date','2021-09-17'),(1002,211,'_wp_old_date','2021-09-17'),(1003,209,'_wp_old_date','2021-09-17'),(1006,359,'_wp_old_date','2021-09-17'),(1007,238,'_wp_old_date','2021-09-17'),(1008,430,'_wp_old_date','2021-09-17'),(1143,791,'_wp_attached_file','2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg'),(1144,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1642;s:6:\"height\";i:1616;s:4:\"file\";s:38:\"2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Ruben-IMG_5250-1-2500PX-CP-1024x1008.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1008;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-768x756.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Ruben-IMG_5250-1-2500PX-CP-1536x1512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Ruben-IMG_5250-1-2500PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Ruben-IMG_5250-1-2500PX-CP-1080x1063.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Ruben-IMG_5250-1-2500PX-CP-1280x1260.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-980x964.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:964;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Ruben-IMG_5250-1-2500PX-CP-480x472.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1634631661\";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\";}}'),(1129,774,'_wp_attached_file','2021/10/IMG_5330-1-2000px7-scaled.jpg'),(1130,774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1628;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2021/10/IMG_5330-1-2000px7-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"IMG_5330-1-2000px7-651x1024.jpg\";s:5:\"width\";i:651;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_5330-1-2000px7-768x1208.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"IMG_5330-1-2000px7-977x1536.jpg\";s:5:\"width\";i:977;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"IMG_5330-1-2000px7-1302x2048.jpg\";s:5:\"width\";i:1302;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"IMG_5330-1-2000px7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"IMG_5330-1-2000px7-1080x1698.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1698;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"IMG_5330-1-2000px7-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"IMG_5330-1-2000px7-1280x2013.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2013;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"IMG_5330-1-2000px7-980x1541.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"IMG_5330-1-2000px7-480x755.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:22:\"IMG_5330-1-2000px7.jpg\";}'),(1131,774,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.72088952753381807525556723703630268573760986328125;s:5:\"bytes\";i:114179;s:11:\"size_before\";i:4196385;s:10:\"size_after\";i:4082206;s:4:\"time\";d:2.0099999999999997868371792719699442386627197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1848;s:11:\"size_before\";i:24756;s:10:\"size_after\";i:22908;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6997;s:11:\"size_before\";i:194650;s:10:\"size_after\";i:187653;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1260;s:11:\"size_before\";i:12529;s:10:\"size_after\";i:11269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:8452;s:11:\"size_before\";i:252544;s:10:\"size_after\";i:244092;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:10571;s:11:\"size_before\";i:372731;s:10:\"size_after\";i:362160;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:12296;s:11:\"size_before\";i:584385;s:10:\"size_after\";i:572089;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2574;s:11:\"size_before\";i:43237;s:10:\"size_after\";i:40663;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:5817;s:11:\"size_before\";i:209109;s:10:\"size_after\";i:203292;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2760;s:11:\"size_before\";i:48485;s:10:\"size_after\";i:45725;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:3689;s:11:\"size_before\";i:75512;s:10:\"size_after\";i:71823;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:11588;s:11:\"size_before\";i:436727;s:10:\"size_after\";i:425139;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3768;s:11:\"size_before\";i:75078;s:10:\"size_after\";i:71310;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:14381;s:11:\"size_before\";i:805839;s:10:\"size_after\";i:791458;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:12606;s:11:\"size_before\";i:568684;s:10:\"size_after\";i:556078;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:10583;s:11:\"size_before\";i:374650;s:10:\"size_after\";i:364067;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:4989;s:11:\"size_before\";i:117469;s:10:\"size_after\";i:112480;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(1138,783,'_wp_attached_file','2021/10/IMG_5311-1-3000PXC3-scaled.jpg'),(1139,783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1675;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2021/10/IMG_5311-1-3000PXC3-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-196x300.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_5311-1-3000PXC3-670x1024.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_5311-1-3000PXC3-768x1174.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_5311-1-3000PXC3-1005x1536.jpg\";s:5:\"width\";i:1005;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_5311-1-3000PXC3-1340x2048.jpg\";s:5:\"width\";i:1340;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"IMG_5311-1-3000PXC3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"IMG_5311-1-3000PXC3-1080x1650.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"IMG_5311-1-3000PXC3-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"IMG_5311-1-3000PXC3-1280x1956.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1956;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"IMG_5311-1-3000PXC3-980x1498.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"IMG_5311-1-3000PXC3-480x734.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:734;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:23:\"IMG_5311-1-3000PXC3.jpg\";}'),(1140,783,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.012184442981006071704541682265698909759521484375;s:5:\"bytes\";i:159815;s:11:\"size_before\";i:5305618;s:10:\"size_after\";i:5145803;s:4:\"time\";d:3.949999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:2683;s:11:\"size_before\";i:35237;s:10:\"size_after\";i:32554;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:10306;s:11:\"size_before\";i:264801;s:10:\"size_after\";i:254495;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1487;s:11:\"size_before\";i:15360;s:10:\"size_after\";i:13873;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:11563;s:11:\"size_before\";i:327619;s:10:\"size_after\";i:316056;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14653;s:11:\"size_before\";i:495631;s:10:\"size_after\";i:480978;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:18322;s:11:\"size_before\";i:766524;s:10:\"size_after\";i:748202;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3259;s:11:\"size_before\";i:52899;s:10:\"size_after\";i:49640;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8241;s:11:\"size_before\";i:254498;s:10:\"size_after\";i:246257;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3601;s:11:\"size_before\";i:58592;s:10:\"size_after\";i:54991;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4847;s:11:\"size_before\";i:90736;s:10:\"size_after\";i:85889;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:15513;s:11:\"size_before\";i:553206;s:10:\"size_after\";i:537693;s:4:\"time\";d:0.25;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5482;s:11:\"size_before\";i:98705;s:10:\"size_after\";i:93223;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:19825;s:11:\"size_before\";i:942160;s:10:\"size_after\";i:922335;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:17998;s:11:\"size_before\";i:715606;s:10:\"size_after\";i:697608;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:14373;s:11:\"size_before\";i:478275;s:10:\"size_after\";i:463902;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7662;s:11:\"size_before\";i:155769;s:10:\"size_after\";i:148107;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(1022,723,'_wp_attached_file','2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg'),(1023,723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1986;s:6:\"height\";i:2045;s:4:\"file\";s:56:\"2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-994x1024.jpg\";s:5:\"width\";i:994;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-768x791.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-1492x1536.jpg\";s:5:\"width\";i:1492;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:57:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:58:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-1080x1112.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:58:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-1986x1800.jpg\";s:5:\"width\";i:1986;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:58:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-1280x1318.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1318;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:57:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-980x1009.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1009;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:56:\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1-480x494.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633557433\";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\";}}'),(1024,723,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.554612541912302248192645492963492870330810546875;s:5:\"bytes\";i:470015;s:11:\"size_before\";i:1839257;s:10:\"size_after\";i:1369242;s:4:\"time\";d:0.87000000000000021760371282653068192303180694580078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.56999999999999317878973670303821563720703125;s:5:\"bytes\";i:28353;s:11:\"size_before\";i:41347;s:10:\"size_after\";i:12994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:31591;s:11:\"size_before\";i:127006;s:10:\"size_after\";i:95415;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:28097;s:11:\"size_before\";i:33014;s:10:\"size_after\";i:4917;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:29829;s:11:\"size_before\";i:90046;s:10:\"size_after\";i:60217;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:37503;s:11:\"size_before\";i:252812;s:10:\"size_after\";i:215309;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:28287;s:11:\"size_before\";i:42394;s:10:\"size_after\";i:14107;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:30613;s:11:\"size_before\";i:104757;s:10:\"size_after\";i:74144;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:28361;s:11:\"size_before\";i:44161;s:10:\"size_after\";i:15800;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:53.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:28627;s:11:\"size_before\";i:53121;s:10:\"size_after\";i:24494;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:32236;s:11:\"size_before\";i:143574;s:10:\"size_after\";i:111338;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:28832;s:11:\"size_before\";i:57478;s:10:\"size_after\";i:28646;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:42951;s:11:\"size_before\";i:477506;s:10:\"size_after\";i:434555;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:34549;s:11:\"size_before\";i:190357;s:10:\"size_after\";i:155808;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:31388;s:11:\"size_before\";i:124865;s:10:\"size_after\";i:93477;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:28798;s:11:\"size_before\";i:56819;s:10:\"size_after\";i:28021;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(3810,1600,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.241755632266079434344874243834055960178375244140625;s:5:\"bytes\";i:12969;s:11:\"size_before\";i:400061;s:10:\"size_after\";i:387092;s:4:\"time\";d:0.6900000000000001687538997430237941443920135498046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:829;s:11:\"size_before\";i:9579;s:10:\"size_after\";i:8750;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:1039;s:11:\"size_before\";i:52041;s:10:\"size_after\";i:51002;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:679;s:11:\"size_before\";i:4368;s:10:\"size_after\";i:3689;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:965;s:11:\"size_before\";i:33177;s:10:\"size_after\";i:32212;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:791;s:11:\"size_before\";i:10738;s:10:\"size_after\";i:9947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1108;s:11:\"size_before\";i:44068;s:10:\"size_after\";i:42960;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:842;s:11:\"size_before\";i:11558;s:10:\"size_after\";i:10716;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:875;s:11:\"size_before\";i:16236;s:10:\"size_after\";i:15361;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1290;s:11:\"size_before\";i:57533;s:10:\"size_after\";i:56243;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:877;s:11:\"size_before\";i:16923;s:10:\"size_after\";i:16046;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1669;s:11:\"size_before\";i:77635;s:10:\"size_after\";i:75966;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1094;s:11:\"size_before\";i:48892;s:10:\"size_after\";i:47798;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:911;s:11:\"size_before\";i:17313;s:10:\"size_after\";i:16402;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(2163,1173,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.11453901494634965985142116551287472248077392578125;s:5:\"bytes\";i:25401;s:11:\"size_before\";i:496643;s:10:\"size_after\";i:471242;s:4:\"time\";d:0.53999999999999992450483432548935525119304656982421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1441;s:11:\"size_before\";i:24288;s:10:\"size_after\";i:22847;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:870;s:11:\"size_before\";i:8372;s:10:\"size_after\";i:7502;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5210;s:11:\"size_before\";i:116081;s:10:\"size_after\";i:110871;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:26038;s:10:\"size_after\";i:24538;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:6391;s:11:\"size_before\";i:133764;s:10:\"size_after\";i:127373;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1731;s:11:\"size_before\";i:29678;s:10:\"size_after\";i:27947;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:2449;s:11:\"size_before\";i:46669;s:10:\"size_after\";i:44220;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2931;s:11:\"size_before\";i:58945;s:10:\"size_after\";i:56014;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2878;s:11:\"size_before\";i:52808;s:10:\"size_after\";i:49930;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(1631,1137,'_et_pb_post_hide_nav','default'),(1632,1137,'_et_pb_page_layout','et_right_sidebar'),(1633,1137,'_et_pb_side_nav','off'),(1634,1137,'_et_pb_use_builder','on'),(1635,1137,'_et_pb_first_image',''),(1636,1137,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"1500\" height=\"704\" src=\"https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg\" alt=\"\" title=\"Grace-IMG_5247-1.1500PX-CROP\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg 1500w, https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP-1280x601.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP-980x460.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP-480x225.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1500px, 100vw\" class=\"wp-image-1140\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_2\" class=\"et_pb_with_border et_pb_module et_pb_contact_form_2 et_pb_contact_form_container clearfix\" data-form_unique_num=\"2\" data-form_unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\">\n				\n				\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">MAKE A RESERVATION</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://flaphotography.com/divi_overlay/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_20 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_2\" class=\"et_pb_contact_form_label\">Full Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_2\" class=\"input\" value=\"\" name=\"et_pb_contact_name_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Full Name\" pattern=\"[A-Z|a-z|s-]*\" title=\"Only letters allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_21 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_phone_2\" class=\"et_pb_contact_form_label\">Phone # (Optional)</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_2\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_2\" data-required_mark=\"not_required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone # (Optional)\" pattern=\"[0-9s-]*\" title=\"Only numbers allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_22 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_2\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_2\" class=\"input\" value=\"\" name=\"et_pb_contact_email_2\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_23 et_pb_contact_field_last\" data-id=\"yourneeds\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_yourneeds_2\" class=\"et_pb_contact_form_label\">Select your needs.</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_yourneeds_2\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"yourneeds\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your needs.</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_23_0\" class=\"input\" value=\"Headshots\" data-id=\"-1\">\n							<label for=\"et_pb_contact_yourneeds_23_0\"><i></i>Headshots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_23_1\" class=\"input\" value=\"Full Body Shots\" data-id=\"0\">\n							<label for=\"et_pb_contact_yourneeds_23_1\"><i></i>Full Body Shots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_23_2\" class=\"input\" value=\"On Location\" data-id=\"1\">\n							<label for=\"et_pb_contact_yourneeds_23_2\"><i></i>On Location</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_24 et_pb_contact_field_last\" data-id=\"package\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_package_2\" class=\"et_pb_contact_form_label\">Select your package</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your package</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_2_24_0\" class=\"input\" value=\"$299 / 5 Retouched Photos\" name=\"et_pb_contact_package_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_package_2_24_0\"><i></i>$299 / 5 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_2_24_1\" class=\"input\" value=\"$449 / 10 Retouched Photos\" name=\"et_pb_contact_package_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"0\">\n								<label for=\"et_pb_contact_package_2_24_1\"><i></i>$449 / 10 Retouched Photos</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_25 et_pb_contact_field_last\" data-id=\"date-time-picker\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_date-time-picker_2\" class=\"et_pb_contact_form_label\">What date would you like the services?</label>\n				<input type=\"text\" id=\"et_pb_contact_date-time-picker_2\" class=\"input\" value=\"\" name=\"et_pb_contact_date-time-picker_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"date-time-picker\" placeholder=\"What date would you like the services?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_26 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is not empty&quot;,&quot;$299 / 5 Retouched Photos&quot;]]\" data-conditional-relation=\"any\" data-id=\"firsttime\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_firsttime_2\" class=\"et_pb_contact_form_label\">Is it your first time in a studio setting?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Is it your first time in a studio setting?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_2_26_0\" class=\"input\" value=\"Yes, it is.\" name=\"et_pb_contact_firsttime_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_firsttime_2_26_0\"><i></i>Yes, it is.</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_2_26_1\" class=\"input\" value=\"No, it is not.\" name=\"et_pb_contact_firsttime_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"0\">\n								<label for=\"et_pb_contact_firsttime_2_26_1\"><i></i>No, it is not.</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_27 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is not empty&quot;,&quot;$299 / 5 Retouched Photos&quot;]]\" data-conditional-relation=\"any\" data-id=\"heardfrom\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_heardfrom_2\" class=\"et_pb_contact_form_label\">How did you hear about this offer?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">How did you hear about this offer?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_2_27_0\" class=\"input\" value=\"Social Media Post\" name=\"et_pb_contact_heardfrom_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_heardfrom_2_27_0\"><i></i>Social Media Post</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_2_27_1\" class=\"input\" value=\"A Friend\" name=\"et_pb_contact_heardfrom_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"1\">\n								<label for=\"et_pb_contact_heardfrom_2_27_1\"><i></i>A Friend</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_2_27_2\" class=\"input\" value=\"Other\" name=\"et_pb_contact_heardfrom_2\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"2\">\n								<label for=\"et_pb_contact_heardfrom_2_27_2\"><i></i>Other</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_28 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_2\" class=\"et_pb_contact_form_label\">Message (optional)</label>\n				<textarea name=\"et_pb_contact_message_2\" id=\"et_pb_contact_message_2\" class=\"et_pb_contact_message input\" data-required_mark=\"not_required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message (optional)\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_2\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\" data-icon=\"&#x4e;\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-2\" name=\"_wpnonce-et-pb-contact-form-submitted-2\" value=\"b1834ccab1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/divi_overlay/\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(1637,1137,'_et_pb_truncate_post_date','2022-07-09 04:00:49'),(1638,1137,'_et_pb_old_content',''),(1639,1137,'_yoast_wpseo_estimated-reading-time-minutes',''),(1640,1137,'_edit_lock','1656796863:1'),(1641,1140,'_wp_attached_file','2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg'),(1642,1140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:704;s:4:\"file\";s:40:\"2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Grace-IMG_5247-1.1500PX-CROP-1024x481.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Grace-IMG_5247-1.1500PX-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"Grace-IMG_5247-1.1500PX-CROP-1080x507.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"Grace-IMG_5247-1.1500PX-CROP-1280x601.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-980x460.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Grace-IMG_5247-1.1500PX-CROP-480x225.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1643,1140,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.94037705952452821378528824425302445888519287109375;s:5:\"bytes\";i:47647;s:11:\"size_before\";i:1209199;s:10:\"size_after\";i:1161552;s:4:\"time\";d:0.5700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1593;s:11:\"size_before\";i:20007;s:10:\"size_after\";i:18414;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:5144;s:11:\"size_before\";i:144010;s:10:\"size_after\";i:138866;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1137;s:11:\"size_before\";i:11724;s:10:\"size_after\";i:10587;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3954;s:11:\"size_before\";i:91231;s:10:\"size_after\";i:87277;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2276;s:11:\"size_before\";i:39922;s:10:\"size_after\";i:37646;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:5637;s:11:\"size_before\";i:188141;s:10:\"size_after\";i:182504;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2449;s:11:\"size_before\";i:44062;s:10:\"size_after\";i:41613;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:68143;s:10:\"size_after\";i:64906;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5463;s:11:\"size_before\";i:155620;s:10:\"size_after\";i:150157;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:3168;s:11:\"size_before\";i:67183;s:10:\"size_after\";i:64015;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:6178;s:11:\"size_before\";i:201081;s:10:\"size_after\";i:194903;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4940;s:11:\"size_before\";i:134754;s:10:\"size_after\";i:129814;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2471;s:11:\"size_before\";i:43321;s:10:\"size_after\";i:40850;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2231,98,'_thumbnail_id','0'),(2256,1205,'_wp_attached_file','2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg'),(2257,1205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:46:\"2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2258,1205,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.120045087356754009988435427658259868621826171875;s:5:\"bytes\";i:6064;s:11:\"size_before\";i:85168;s:10:\"size_after\";i:79104;s:4:\"time\";d:0.269999999999999962252417162744677625596523284912109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:761;s:11:\"size_before\";i:4906;s:10:\"size_after\";i:4145;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:807;s:11:\"size_before\";i:2577;s:10:\"size_after\";i:1770;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:486;s:11:\"size_before\";i:17699;s:10:\"size_after\";i:17213;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:669;s:11:\"size_before\";i:6247;s:10:\"size_after\";i:5578;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:536;s:11:\"size_before\";i:20397;s:10:\"size_after\";i:19861;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:719;s:11:\"size_before\";i:6448;s:10:\"size_after\";i:5729;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:687;s:11:\"size_before\";i:8901;s:10:\"size_after\";i:8214;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:710;s:11:\"size_before\";i:9109;s:10:\"size_after\";i:8399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:689;s:11:\"size_before\";i:8884;s:10:\"size_after\";i:8195;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2259,1206,'_wp_attached_file','2022/03/TURMERIC-IMG_5902-900PX.jpg'),(2260,1206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2022/03/TURMERIC-IMG_5902-900PX.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"TURMERIC-IMG_5902-900PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1341,1104,'_wp_attached_file','2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg'),(1342,1104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:39:\"2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"MR-ED-IMG_7336-CROP-1300PX2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"MR-ED-IMG_7336-CROP-1300PX2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"MR-ED-IMG_7336-CROP-1300PX2-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"MR-ED-IMG_7336-CROP-1300PX2-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"MR-ED-IMG_7336-CROP-1300PX2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1343,1104,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.53624648264113705664613007684238255023956298828125;s:5:\"bytes\";i:27067;s:11:\"size_before\";i:1067207;s:10:\"size_after\";i:1040140;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:934;s:11:\"size_before\";i:14720;s:10:\"size_after\";i:13786;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9699999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:3068;s:11:\"size_before\";i:155752;s:10:\"size_after\";i:152684;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:755;s:11:\"size_before\";i:5565;s:10:\"size_after\";i:4810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5;s:5:\"bytes\";i:2122;s:11:\"size_before\";i:84930;s:10:\"size_after\";i:82808;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1077;s:11:\"size_before\";i:16508;s:10:\"size_after\";i:15431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3706;s:11:\"size_before\";i:113754;s:10:\"size_after\";i:110048;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1098;s:11:\"size_before\";i:18466;s:10:\"size_after\";i:17368;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:29668;s:10:\"size_after\";i:28253;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:3224;s:11:\"size_before\";i:173829;s:10:\"size_after\";i:170605;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1389;s:11:\"size_before\";i:33668;s:10:\"size_after\";i:32279;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:4050;s:11:\"size_before\";i:244807;s:10:\"size_after\";i:240757;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2939;s:11:\"size_before\";i:143320;s:10:\"size_after\";i:140381;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:1290;s:11:\"size_before\";i:32220;s:10:\"size_after\";i:30930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(1344,1105,'_wp_attached_file','2021/12/DESTINY-IMG_7351-1300PX2.jpg'),(1345,1105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:36:\"2021/12/DESTINY-IMG_7351-1300PX2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"DESTINY-IMG_7351-1300PX2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"DESTINY-IMG_7351-1300PX2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"DESTINY-IMG_7351-1300PX2-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"DESTINY-IMG_7351-1300PX2-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"DESTINY-IMG_7351-1300PX2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1346,1105,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.89364717952410099854887448600493371486663818359375;s:5:\"bytes\";i:43501;s:11:\"size_before\";i:888928;s:10:\"size_after\";i:845427;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1119;s:11:\"size_before\";i:15050;s:10:\"size_after\";i:13931;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:5698;s:11:\"size_before\";i:125742;s:10:\"size_after\";i:120044;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:759;s:11:\"size_before\";i:5608;s:10:\"size_after\";i:4849;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3441;s:11:\"size_before\";i:73272;s:10:\"size_after\";i:69831;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1230;s:11:\"size_before\";i:16841;s:10:\"size_after\";i:15611;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4348;s:11:\"size_before\";i:90108;s:10:\"size_after\";i:85760;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1291;s:11:\"size_before\";i:18807;s:10:\"size_after\";i:17516;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1771;s:11:\"size_before\";i:29293;s:10:\"size_after\";i:27522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:6328;s:11:\"size_before\";i:139158;s:10:\"size_after\";i:132830;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:34289;s:10:\"size_after\";i:32524;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8740;s:11:\"size_before\";i:192499;s:10:\"size_after\";i:183759;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:5239;s:11:\"size_before\";i:116413;s:10:\"size_after\";i:111174;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1772;s:11:\"size_before\";i:31848;s:10:\"size_after\";i:30076;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1111,747,'_wp_attached_file','2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg'),(1112,747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1858;s:6:\"height\";i:1730;s:4:\"file\";s:45:\"2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-300x279.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Flow-presence_MG_8542-1-FQ-2000PX-1024x953.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:953;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-768x715.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:715;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Flow-presence_MG_8542-1-FQ-2000PX-1536x1430.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Flow-presence_MG_8542-1-FQ-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Flow-presence_MG_8542-1-FQ-2000PX-1080x1006.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1006;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Flow-presence_MG_8542-1-FQ-2000PX-1280x1192.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-980x912.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:912;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Flow-presence_MG_8542-1-FQ-2000PX-480x447.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1634387224\";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\";}}'),(1113,747,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.65888931261793715066232834942638874053955078125;s:5:\"bytes\";i:407766;s:11:\"size_before\";i:1211466;s:10:\"size_after\";i:803700;s:4:\"time\";d:0.42000000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.400000000000005684341886080801486968994140625;s:5:\"bytes\";i:26802;s:11:\"size_before\";i:37536;s:10:\"size_after\";i:10734;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:30315;s:11:\"size_before\";i:114893;s:10:\"size_after\";i:84578;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:26543;s:11:\"size_before\";i:30964;s:10:\"size_after\";i:4421;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:28732;s:11:\"size_before\";i:78658;s:10:\"size_after\";i:49926;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:35938;s:11:\"size_before\";i:219941;s:10:\"size_after\";i:184003;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:26852;s:11:\"size_before\";i:39586;s:10:\"size_after\";i:12734;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:29867;s:11:\"size_before\";i:101014;s:10:\"size_after\";i:71147;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:65.6200000000000045474735088646411895751953125;s:5:\"bytes\";i:26947;s:11:\"size_before\";i:41068;s:10:\"size_after\";i:14121;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:27330;s:11:\"size_before\";i:49217;s:10:\"size_after\";i:21887;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:30759;s:11:\"size_before\";i:124084;s:10:\"size_after\";i:93325;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.7999999999999971578290569595992565155029296875;s:5:\"bytes\";i:27390;s:11:\"size_before\";i:55005;s:10:\"size_after\";i:27615;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:32927;s:11:\"size_before\";i:162033;s:10:\"size_after\";i:129106;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:29996;s:11:\"size_before\";i:107758;s:10:\"size_after\";i:77762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.06000000000000227373675443232059478759765625;s:5:\"bytes\";i:27368;s:11:\"size_before\";i:49709;s:10:\"size_after\";i:22341;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1114,750,'_wp_attached_file','2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg'),(1115,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1752;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-205x300.jpg\";s:5:\"width\";i:205;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-701x1024.jpg\";s:5:\"width\";i:701;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-768x1122.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-1051x1536.jpg\";s:5:\"width\";i:1051;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-1401x2048.jpg\";s:5:\"width\";i:1401;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-1080x1578.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-1280x1870.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1870;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-980x1432.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Marvelous-Sky_MG_8543-1-FQ-2000PX-480x701.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:37:\"Marvelous-Sky_MG_8543-1-FQ-2000PX.jpg\";}'),(1116,750,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.13347189405090720271118698292411863803863525390625;s:5:\"bytes\";i:38339;s:11:\"size_before\";i:1223531;s:10:\"size_after\";i:1185192;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:810;s:11:\"size_before\";i:9079;s:10:\"size_after\";i:8269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1436;s:11:\"size_before\";i:54218;s:10:\"size_after\";i:52782;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:792;s:11:\"size_before\";i:5277;s:10:\"size_after\";i:4485;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1422;s:11:\"size_before\";i:62740;s:10:\"size_after\";i:61318;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2445;s:11:\"size_before\";i:105893;s:10:\"size_after\";i:103448;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:4596;s:11:\"size_before\";i:177082;s:10:\"size_after\";i:172486;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:920;s:11:\"size_before\";i:12652;s:10:\"size_after\";i:11732;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1907;s:11:\"size_before\";i:59150;s:10:\"size_after\";i:57243;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:936;s:11:\"size_before\";i:14304;s:10:\"size_after\";i:13368;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1072;s:11:\"size_before\";i:21462;s:10:\"size_after\";i:20390;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2516;s:11:\"size_before\";i:111189;s:10:\"size_after\";i:108673;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1077;s:11:\"size_before\";i:21759;s:10:\"size_after\";i:20682;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:11363;s:11:\"size_before\";i:294409;s:10:\"size_after\";i:283046;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3672;s:11:\"size_before\";i:150088;s:10:\"size_after\";i:146416;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2151;s:11:\"size_before\";i:93842;s:10:\"size_after\";i:91691;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1224;s:11:\"size_before\";i:30387;s:10:\"size_after\";i:29163;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(1117,757,'_wp_attached_file','2021/10/MG_8545-1-FQ-2000PX-scaled.jpg'),(1118,757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1473;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-173x300.jpg\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"MG_8545-1-FQ-2000PX-589x1024.jpg\";s:5:\"width\";i:589;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"MG_8545-1-FQ-2000PX-768x1335.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"MG_8545-1-FQ-2000PX-884x1536.jpg\";s:5:\"width\";i:884;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"MG_8545-1-FQ-2000PX-1178x2048.jpg\";s:5:\"width\";i:1178;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"MG_8545-1-FQ-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"MG_8545-1-FQ-2000PX-1080x1878.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:33:\"MG_8545-1-FQ-2000PX-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"MG_8545-1-FQ-2000PX-1280x2225.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:2225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:32:\"MG_8545-1-FQ-2000PX-980x1703.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1703;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"MG_8545-1-FQ-2000PX-480x834.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:834;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:23:\"MG_8545-1-FQ-2000PX.jpg\";}'),(1119,757,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.333885962659158597176656257943250238895416259765625;s:5:\"bytes\";i:27986;s:11:\"size_before\";i:1199116;s:10:\"size_after\";i:1171130;s:4:\"time\";d:0.8200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:719;s:11:\"size_before\";i:8659;s:10:\"size_after\";i:7940;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1248;s:11:\"size_before\";i:48806;s:10:\"size_after\";i:47558;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:685;s:11:\"size_before\";i:4830;s:10:\"size_after\";i:4145;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1488;s:11:\"size_before\";i:73829;s:10:\"size_after\";i:72341;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1919;s:11:\"size_before\";i:92990;s:10:\"size_after\";i:91071;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:3015;s:11:\"size_before\";i:151691;s:10:\"size_after\";i:148676;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:680;s:11:\"size_before\";i:11195;s:10:\"size_after\";i:10515;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:1133;s:11:\"size_before\";i:49777;s:10:\"size_after\";i:48644;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:702;s:11:\"size_before\";i:12695;s:10:\"size_after\";i:11993;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:833;s:11:\"size_before\";i:19066;s:10:\"size_after\";i:18233;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2725;s:11:\"size_before\";i:130715;s:10:\"size_after\";i:127990;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:734;s:11:\"size_before\";i:21726;s:10:\"size_after\";i:20992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:5267;s:11:\"size_before\";i:250440;s:10:\"size_after\";i:245173;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3546;s:11:\"size_before\";i:176241;s:10:\"size_after\";i:172695;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:2282;s:11:\"size_before\";i:110552;s:10:\"size_after\";i:108270;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1010;s:11:\"size_before\";i:35904;s:10:\"size_after\";i:34894;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1042,79,'_yoast_wpseo_estimated-reading-time-minutes',''),(1220,909,'_wp_attached_file','2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg'),(1221,909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1796;s:6:\"height\";i:2560;s:4:\"file\";s:62:\"2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-718x1024.jpg\";s:5:\"width\";i:718;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-768x1095.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-1078x1536.jpg\";s:5:\"width\";i:1078;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-1437x2048.jpg\";s:5:\"width\";i:1437;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-1080x1539.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1539;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-1280x1824.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1824;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:56:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-980x1397.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP-480x684.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1637617444\";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:14:\"original_image\";s:47:\"Francine-Work-Serious-IMG_6446-6000PX2-CROP.jpg\";}'),(1145,791,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.0676091174575361719689681194722652435302734375;s:5:\"bytes\";i:603206;s:11:\"size_before\";i:2228516;s:10:\"size_after\";i:1625310;s:4:\"time\";d:0.70000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.340000000000003410605131648480892181396484375;s:5:\"bytes\";i:40402;s:11:\"size_before\";i:66962;s:10:\"size_after\";i:26560;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:45139;s:11:\"size_before\";i:225583;s:10:\"size_after\";i:180444;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:39483;s:11:\"size_before\";i:48038;s:10:\"size_after\";i:8555;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:43566;s:11:\"size_before\";i:160471;s:10:\"size_after\";i:116905;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:49527;s:11:\"size_before\";i:387747;s:10:\"size_after\";i:338220;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:40192;s:11:\"size_before\";i:66759;s:10:\"size_after\";i:26567;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:42867;s:11:\"size_before\";i:167899;s:10:\"size_after\";i:125032;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:57.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:40436;s:11:\"size_before\";i:70258;s:10:\"size_after\";i:29822;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:41046;s:11:\"size_before\";i:87069;s:10:\"size_after\";i:46023;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:45639;s:11:\"size_before\";i:241937;s:10:\"size_after\";i:196298;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:41259;s:11:\"size_before\";i:91511;s:10:\"size_after\";i:50252;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:47196;s:11:\"size_before\";i:301859;s:10:\"size_after\";i:254663;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:44923;s:11:\"size_before\";i:214991;s:10:\"size_after\";i:170068;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.63000000000000255795384873636066913604736328125;s:5:\"bytes\";i:41531;s:11:\"size_before\";i:97432;s:10:\"size_after\";i:55901;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1120,760,'_wp_attached_file','2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg'),(1121,760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2301;s:4:\"file\";s:41:\"2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"IMG_5248-1-5000PX-CROP-1024x921.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-768x690.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"IMG_5248-1-5000PX-CROP-1536x1381.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"IMG_5248-1-5000PX-CROP-2048x1841.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1841;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"IMG_5248-1-5000PX-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"IMG_5248-1-5000PX-CROP-1080x971.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:971;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:36:\"IMG_5248-1-5000PX-CROP-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"IMG_5248-1-5000PX-CROP-1280x1151.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-980x881.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:881;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"IMG_5248-1-5000PX-CROP-480x431.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1634510208\";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:14:\"original_image\";s:26:\"IMG_5248-1-5000PX-CROP.jpg\";}'),(1122,760,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.70598882794205763957506860606372356414794921875;s:5:\"bytes\";i:731051;s:11:\"size_before\";i:3709791;s:10:\"size_after\";i:2978740;s:4:\"time\";d:1.050000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:39989;s:11:\"size_before\";i:65468;s:10:\"size_after\";i:25479;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:46616;s:11:\"size_before\";i:232258;s:10:\"size_after\";i:185642;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:39112;s:11:\"size_before\";i:47602;s:10:\"size_after\";i:8490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:44592;s:11:\"size_before\";i:163606;s:10:\"size_after\";i:119014;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:51591;s:11:\"size_before\";i:402038;s:10:\"size_after\";i:350447;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:56271;s:11:\"size_before\";i:614643;s:10:\"size_after\";i:558372;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:40060;s:11:\"size_before\";i:68919;s:10:\"size_after\";i:28859;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:44875;s:11:\"size_before\";i:187883;s:10:\"size_after\";i:143008;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:55.25;s:5:\"bytes\";i:40352;s:11:\"size_before\";i:73034;s:10:\"size_after\";i:32682;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:41387;s:11:\"size_before\";i:92957;s:10:\"size_after\";i:51570;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:47229;s:11:\"size_before\";i:248809;s:10:\"size_after\";i:201580;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:41530;s:11:\"size_before\";i:98165;s:10:\"size_after\";i:56635;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:60701;s:11:\"size_before\";i:786165;s:10:\"size_after\";i:725464;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:48876;s:11:\"size_before\";i:310903;s:10:\"size_after\";i:262027;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:46253;s:11:\"size_before\";i:220382;s:10:\"size_after\";i:174129;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:41617;s:11:\"size_before\";i:96959;s:10:\"size_after\";i:55342;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(1222,909,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.71509802439472736068637459538877010345458984375;s:5:\"bytes\";i:698224;s:11:\"size_before\";i:3730806;s:10:\"size_after\";i:3032582;s:4:\"time\";d:1.36000000000000031974423109204508364200592041015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.5400000000000062527760746888816356658935546875;s:5:\"bytes\";i:26775;s:11:\"size_before\";i:35921;s:10:\"size_after\";i:9146;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:32114;s:11:\"size_before\";i:133711;s:10:\"size_after\";i:101597;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:26449;s:11:\"size_before\";i:30245;s:10:\"size_after\";i:3796;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:33194;s:11:\"size_before\";i:149505;s:10:\"size_after\";i:116311;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:43625;s:11:\"size_before\";i:269504;s:10:\"size_after\";i:225879;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:61556;s:11:\"size_before\";i:462252;s:10:\"size_after\";i:400696;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.5;s:5:\"bytes\";i:26786;s:11:\"size_before\";i:40280;s:10:\"size_after\";i:13494;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:33332;s:11:\"size_before\";i:125146;s:10:\"size_after\";i:91814;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:26848;s:11:\"size_before\";i:42256;s:10:\"size_after\";i:15408;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:27401;s:11:\"size_before\";i:53138;s:10:\"size_after\";i:25737;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:43810;s:11:\"size_before\";i:271777;s:10:\"size_after\";i:227967;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:27673;s:11:\"size_before\";i:57366;s:10:\"size_after\";i:29693;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:81897;s:11:\"size_before\";i:683133;s:10:\"size_after\";i:601236;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:53188;s:11:\"size_before\";i:370550;s:10:\"size_after\";i:317362;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:39819;s:11:\"size_before\";i:227717;s:10:\"size_after\";i:187898;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:28582;s:11:\"size_before\";i:74932;s:10:\"size_after\";i:46350;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:85175;s:11:\"size_before\";i:703373;s:10:\"size_after\";i:618198;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(1187,860,'_et_pb_built_for_post_type','page'),(2344,1243,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:36617574;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:29;s:16:\"length_formatted\";s:4:\"0:29\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1648169905;}'),(2122,1158,'_wp_attached_file','2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg'),(2123,1158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1531;s:4:\"file\";s:46:\"2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-176x300.jpg\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Marvelous-Fashion-2-IMG_9010-900px-602x1024.jpg\";s:5:\"width\";i:602;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Marvelous-Fashion-2-IMG_9010-900px-768x1306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"Marvelous-Fashion-2-IMG_9010-900px-480x817.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:817;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2124,1158,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.517610888848675898543660878203809261322021484375;s:5:\"bytes\";i:25215;s:11:\"size_before\";i:558149;s:10:\"size_after\";i:532934;s:4:\"time\";d:0.4199999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:911;s:11:\"size_before\";i:12926;s:10:\"size_after\";i:12015;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:3869;s:11:\"size_before\";i:92359;s:10:\"size_after\";i:88490;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:770;s:11:\"size_before\";i:7616;s:10:\"size_after\";i:6846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5335;s:11:\"size_before\";i:138876;s:10:\"size_after\";i:133541;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1264;s:11:\"size_before\";i:22545;s:10:\"size_after\";i:21281;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4895;s:11:\"size_before\";i:114229;s:10:\"size_after\";i:109334;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1392;s:11:\"size_before\";i:25473;s:10:\"size_after\";i:24081;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1980;s:11:\"size_before\";i:40248;s:10:\"size_after\";i:38268;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:1913;s:11:\"size_before\";i:40281;s:10:\"size_after\";i:38368;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2886;s:11:\"size_before\";i:63596;s:10:\"size_after\";i:60710;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(2265,1212,'_wp_attached_file','2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg'),(2266,1212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:44:\"2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Shea-Butter-Soap-IMG_5910-900px2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2267,1212,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.91515989716351153759887893102131783962249755859375;s:5:\"bytes\";i:8150;s:11:\"size_before\";i:117857;s:10:\"size_after\";i:109707;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:893;s:11:\"size_before\";i:6649;s:10:\"size_after\";i:5756;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:851;s:11:\"size_before\";i:3266;s:10:\"size_after\";i:2415;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:903;s:11:\"size_before\";i:24205;s:10:\"size_after\";i:23302;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:839;s:11:\"size_before\";i:8766;s:10:\"size_after\";i:7927;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:947;s:11:\"size_before\";i:28541;s:10:\"size_after\";i:27594;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:866;s:11:\"size_before\";i:8966;s:10:\"size_after\";i:8100;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:923;s:11:\"size_before\";i:12483;s:10:\"size_after\";i:11560;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:953;s:11:\"size_before\";i:12769;s:10:\"size_after\";i:11816;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:975;s:11:\"size_before\";i:12212;s:10:\"size_after\";i:11237;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2343,1243,'_wp_attached_file','2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4'),(1232,359,'_wp_old_date','2021-10-10'),(1233,238,'_wp_old_date','2021-10-10'),(1234,430,'_wp_old_date','2021-10-10'),(1236,1015,'_et_pb_built_for_post_type','page'),(1223,967,'_et_pb_built_for_post_type','page'),(1224,982,'_et_pb_built_for_post_type','page'),(1225,987,'_et_pb_built_for_post_type','page'),(1226,208,'_wp_old_date','2021-10-10'),(1227,213,'_wp_old_date','2021-10-10'),(1228,211,'_wp_old_date','2021-10-10'),(1229,209,'_wp_old_date','2021-10-10'),(2910,1323,'_wp_attached_file','2022/06/RACHEL-LOOK-IMG_8533-800px.jpg'),(2911,1323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2022/06/RACHEL-LOOK-IMG_8533-800px.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"RACHEL-LOOK-IMG_8533-800px-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2912,1323,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.40550900243827125990492277196608483791351318359375;s:5:\"bytes\";i:25384;s:11:\"size_before\";i:469595;s:10:\"size_after\";i:444211;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1599;s:11:\"size_before\";i:25179;s:10:\"size_after\";i:23580;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:869;s:11:\"size_before\";i:8433;s:10:\"size_after\";i:7564;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5582;s:11:\"size_before\";i:116399;s:10:\"size_after\";i:110817;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1491;s:11:\"size_before\";i:24044;s:10:\"size_after\";i:22553;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6019;s:11:\"size_before\";i:116446;s:10:\"size_after\";i:110427;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1681;s:11:\"size_before\";i:27810;s:10:\"size_after\";i:26129;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2470;s:11:\"size_before\";i:43911;s:10:\"size_after\";i:41441;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2742;s:11:\"size_before\";i:53805;s:10:\"size_after\";i:51063;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2931;s:11:\"size_before\";i:53568;s:10:\"size_after\";i:50637;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1240,1047,'_et_pb_module_type','et_pb_text'),(1241,1047,'_et_pb_built_for_post_type','page'),(1242,1050,'_et_pb_module_type','et_pb_button'),(1243,1050,'_et_pb_built_for_post_type','page'),(3910,1646,'_et_pb_use_builder','on'),(1261,1063,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.464936066817942528217599829076789319515228271484375;s:5:\"bytes\";i:51251;s:11:\"size_before\";i:2079202;s:10:\"size_after\";i:2027951;s:4:\"time\";d:1.4900000000000004352074256530613638460636138916015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:819;s:11:\"size_before\";i:13141;s:10:\"size_after\";i:12322;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2286;s:11:\"size_before\";i:104118;s:10:\"size_after\";i:101832;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:722;s:11:\"size_before\";i:5828;s:10:\"size_after\";i:5106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1720;s:11:\"size_before\";i:73658;s:10:\"size_after\";i:71938;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5154;s:11:\"size_before\";i:242618;s:10:\"size_after\";i:237464;s:4:\"time\";d:0.25;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:9478;s:11:\"size_before\";i:448819;s:10:\"size_after\";i:439341;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:854;s:11:\"size_before\";i:15823;s:10:\"size_after\";i:14969;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1754;s:11:\"size_before\";i:90636;s:10:\"size_after\";i:88882;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:873;s:11:\"size_before\";i:17315;s:10:\"size_after\";i:16442;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1069;s:11:\"size_before\";i:26602;s:10:\"size_after\";i:25533;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2833;s:11:\"size_before\";i:145781;s:10:\"size_after\";i:142948;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1185;s:11:\"size_before\";i:28067;s:10:\"size_after\";i:26882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14782;s:11:\"size_before\";i:506977;s:10:\"size_after\";i:492195;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:4175;s:11:\"size_before\";i:208674;s:10:\"size_after\";i:204499;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2482;s:11:\"size_before\";i:119573;s:10:\"size_after\";i:117091;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1065;s:11:\"size_before\";i:31572;s:10:\"size_after\";i:30507;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(1186,860,'_et_pb_module_type','et_pb_contact_form'),(1892,61,'_et_builder_dynamic_assets_loading_attr_threshold','18'),(1355,1114,'_edit_last','1'),(1356,1114,'at_pages','all'),(1357,1114,'at_pages_selected',''),(1358,1114,'at_pagesexception_selected',''),(1359,1114,'divibars_category_at_categories','all'),(1360,1114,'divibars_category_at_categories_selected',''),(1361,1114,'divibars_category_at_exceptioncategories_selected',''),(1362,1114,'divibars_tag_at_tags','all'),(1363,1114,'divibars_tag_at_tags_selected',''),(1364,1114,'divibars_tag_at_exceptiontags_selected',''),(1365,1114,'divibars_displaylocations_archive','0'),(1366,1114,'divibars_displaylocations_author','0'),(1367,1114,'divibars_displaylocations_forcerender','0'),(1368,1114,'dib_css_selector',''),(1369,1114,'dib_post_placement','top'),(1370,1114,'post_pushpage','1'),(1371,1114,'dib_enableurltrigger','0'),(1372,1114,'divibars_showguests','0'),(1373,1114,'divibars_showusers','0'),(1374,1114,'post_screenfixed','0'),(1375,1114,'divibars_automatictrigger','divibar-timed'),(1376,1114,'divibars_automatictrigger_timed_value','0'),(1377,1114,'divibars_automatictrigger_scroll_from_value',''),(1378,1114,'divibars_automatictrigger_scroll_to_value',''),(1379,1114,'divibars_automatictrigger_onceperload','1'),(1380,1114,'divibars_automatictrigger_disablemobile','0'),(1381,1114,'divibars_automatictrigger_disabletablet','0'),(1382,1114,'divibars_automatictrigger_disabledesktop','0'),(1383,1114,'post_closebtn_cookie','0'),(1384,1114,'post_do_hideclosebtn','0'),(1385,1114,'post_do_customizeclosebtn','0'),(1386,1114,'post_closebtn_text_color',''),(1387,1114,'post_closebtn_bg_color',''),(1388,1114,'post_closebtn_fontsize','25'),(1389,1114,'post_closebtn_borderradius',''),(1390,1114,'post_closebtn_padding',''),(1391,1114,'divibars_enable_scheduling','0'),(1392,1114,'_et_pb_post_hide_nav','default'),(1393,1114,'_et_pb_page_layout','et_right_sidebar'),(1394,1114,'_et_pb_side_nav','off'),(1395,1114,'_et_pb_use_builder','on'),(1396,1114,'_et_pb_first_image',''),(1397,1114,'_et_pb_truncate_post',''),(1398,1114,'_et_pb_truncate_post_date',''),(1399,1114,'_et_pb_old_content',''),(1400,1114,'_yoast_wpseo_estimated-reading-time-minutes','1'),(1401,1114,'_edit_lock','1662640276:1'),(1418,1114,'_yoast_wpseo_content_score','90'),(3065,1404,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.264071358566873914952566337888129055500030517578125;s:5:\"bytes\";i:16425;s:11:\"size_before\";i:725463;s:10:\"size_after\";i:709038;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:723;s:11:\"size_before\";i:10522;s:10:\"size_after\";i:9799;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:1361;s:11:\"size_before\";i:71233;s:10:\"size_after\";i:69872;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:737;s:11:\"size_before\";i:6239;s:10:\"size_after\";i:5502;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:953;s:11:\"size_before\";i:43140;s:10:\"size_after\";i:42187;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2304;s:11:\"size_before\";i:152586;s:10:\"size_after\";i:150282;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:690;s:11:\"size_before\";i:15092;s:10:\"size_after\";i:14402;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1478;s:11:\"size_before\";i:76834;s:10:\"size_after\";i:75356;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:770;s:11:\"size_before\";i:17240;s:10:\"size_after\";i:16470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:928;s:11:\"size_before\";i:26415;s:10:\"size_after\";i:25487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:79205;s:10:\"size_after\";i:77693;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1119;s:11:\"size_before\";i:32112;s:10:\"size_after\";i:30993;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:1950;s:11:\"size_before\";i:108307;s:10:\"size_after\";i:106357;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1148;s:11:\"size_before\";i:66433;s:10:\"size_after\";i:65285;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:752;s:11:\"size_before\";i:20105;s:10:\"size_after\";i:19353;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2269,1188,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(2276,1224,'_et_pb_built_for_post_type','page'),(2326,1234,'_et_pb_row_layout','1_3,1_3,1_3'),(2327,1234,'_et_pb_built_for_post_type','page'),(3698,1577,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.89414340631171373985353056923486292362213134765625;s:5:\"bytes\";i:30702;s:11:\"size_before\";i:1620891;s:10:\"size_after\";i:1590189;s:4:\"time\";d:2.170000000000000373034936274052597582340240478515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:835;s:11:\"size_before\";i:10790;s:10:\"size_after\";i:9955;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.029999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:1539;s:11:\"size_before\";i:75724;s:10:\"size_after\";i:74185;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:751;s:11:\"size_before\";i:5902;s:10:\"size_after\";i:5151;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1712;s:11:\"size_before\";i:88185;s:10:\"size_after\";i:86473;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2469;s:11:\"size_before\";i:154119;s:10:\"size_after\";i:151650;s:4:\"time\";d:0.25;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3324;s:11:\"size_before\";i:258068;s:10:\"size_after\";i:254744;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:795;s:11:\"size_before\";i:16492;s:10:\"size_after\";i:15697;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1434;s:11:\"size_before\";i:84556;s:10:\"size_after\";i:83122;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:848;s:11:\"size_before\";i:18320;s:10:\"size_after\";i:17472;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1031;s:11:\"size_before\";i:28068;s:10:\"size_after\";i:27037;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2547;s:11:\"size_before\";i:160961;s:10:\"size_after\";i:158414;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1232;s:11:\"size_before\";i:28521;s:10:\"size_after\";i:27289;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:5658;s:11:\"size_before\";i:297770;s:10:\"size_after\";i:292112;s:4:\"time\";d:0.89000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2983;s:11:\"size_before\";i:217787;s:10:\"size_after\";i:214804;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2315;s:11:\"size_before\";i:135600;s:10:\"size_after\";i:133285;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1229;s:11:\"size_before\";i:40028;s:10:\"size_after\";i:38799;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}');
INSERT INTO `wp1j_postmeta` VALUES (4868,61,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:96:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d0f8b6759696ecb0af1adb967e93768c\";a:6:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6fa3d261d9019e496164c1591e4310c6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1f2d31e100d61a205c17b9e1cbf21941\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8b3c98f295aa606aa579e6c0b5b87ede\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b572febeab75a9bb72e6bf8975c885cc\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b1de069a92e26a76237abf316a2a26a8\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_928eee31826ec6f1ce58bc188313eb98\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_7189064a0efe0b7c2b4fb735cd47d7c6\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3fabf679aa855d9e92a38451c8e4a3bc\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8893ea7f3c230be09f6a5af2d2512f7d\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5cc518d939583598f3d35a346e79e973\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_bf009fe1442febd23903ebbfa9e1a985\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_11e3d14413ec00550e12b6098723db25\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_29d0cf6d61ee3e5e610b650290daca78\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b1f93e4cbdcc74803d2b36f3f4388ff6\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_b83efc995ba7e1e67003d93b911d5450\";a:6:{s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0e55035c0fa79ebbb00a8c8d210e2d8a\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3812d98978283d34625f018d22ab5548\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_44da768257ea5d4c02e6811c5a2f63bf\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_7dcaf6f266249b52d6aa01817dd8f8c4\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f7fa231eef9a026c485985702d6dbb27\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_872dfed348a045473bdf960bf95e3793\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7bc26dc437a03cc28845d1c39aef28c3\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d309a380a170957856b55d8dbb00e95d\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1981d5864def50d71cf8e83a5885fb24\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_97cc908c4c32d9454a5c8436d69791ca\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_27be3081eee2cee50db91b5b1a8c32e7\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b138c9e82628aece549b183f8d531126\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_bb9ecb10debd644dda717322e3454fc5\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4bdc16195e638a9239117bb95dbbd694\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_a60a961dfecd1cee7a5aecf4f3580cf7\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4ab779976ab07fe1d777d7da756de1d8\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_52d325695dbd4519bd473f30c44afd17\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_0e0bcc7ef2642bd1e894f58e8971dedf\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4a8f3607de56005d89385af713f523dc\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_5ed2a4d7d97b15981c1ba27d5d417933\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5902f6e885d84340768fd77b97fa2287\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d0654aee09447e1959be36886edaa82d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_6900935632cec23a895483ba61c07c78\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_f239061b19d6aa0485275b04864d14a0\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_40e9588e03dcc303c96c9b5f433abb17\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_10b4a4070958de1004b53bc14368f1c1\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_2b6ecd1d1d48e41cefda6495356d4712\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_db9e72f36fb434417514ec098ce2b04a\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ba15b8ad7d8c3060fda3bad24c838aa8\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4d0f60ab1b486cae3a520f5362ab1ff7\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_18f3e150283c218fadf2a18efb587732\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f9446b47860c75c2421e2d228d45136e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_fe1ee8a1ce3331b959bdad4f9d2b4b2d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_e3a7b3a19fb47cdd851e59d1d313b6f9\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_68383690cc348c41f612bdd594afe7fe\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d9f51f9157390ac047d01e6fc6c9dd94\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_f01c0dfaea9bba4692fd81d2db725ba4\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_d0fa39cc20085d7e0b8252f295aa7c22\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_c8737302e0c01301d486861ceb2895bb\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_724d42267f69dc8f68fc84448864e916\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_9b9e7ff0125f074f610711a84affca38\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_67cd6e22e677281e5cddf9b376134ade\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e714b781e1937a74029a7bf6ee00b702\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1d4aa49bf5f77af3fa430761c93db17f\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a73a6bef4f90ffdb48b9030ae3b0952d\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bc2ee2cd864a96bd7d7af480d007cb0c\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2ae438c68a8fa8dc80a61decc5cc2efd\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bbc8c5d2c0901838f7b2cb509afa2f23\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_28fa0bdb261a8247a3cc965081709d26\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_3774df33a9a2f12fdfcce3c97abed0ba\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(2235,1198,'_wp_attached_file','2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg'),(2236,1198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:44:\"2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"ALOE-VERA-SOAP-Plant_5904-900PX1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2237,1199,'_wp_attached_file','2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg'),(2238,1199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:40:\"2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"BLACK-SOAP-Flour_5907-900PX4-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2239,1198,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4432279987688989564276198507286608219146728515625;s:5:\"bytes\";i:8666;s:11:\"size_before\";i:159207;s:10:\"size_after\";i:150541;s:4:\"time\";d:0.159999999999999975575093458246556110680103302001953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:866;s:11:\"size_before\";i:9131;s:10:\"size_after\";i:8265;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:816;s:11:\"size_before\";i:4180;s:10:\"size_after\";i:3364;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:34575;s:10:\"size_after\";i:33431;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:827;s:11:\"size_before\";i:10082;s:10:\"size_after\";i:9255;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:38671;s:10:\"size_after\";i:37355;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:875;s:11:\"size_before\";i:11216;s:10:\"size_after\";i:10341;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:915;s:11:\"size_before\";i:16208;s:10:\"size_after\";i:15293;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:931;s:11:\"size_before\";i:18032;s:10:\"size_after\";i:17101;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:976;s:11:\"size_before\";i:17112;s:10:\"size_after\";i:16136;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2240,1200,'_wp_attached_file','2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg'),(2241,1200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:47:\"2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2242,1199,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.89610776274814352149178375839255750179290771484375;s:5:\"bytes\";i:17140;s:11:\"size_before\";i:248546;s:10:\"size_after\";i:231406;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1263;s:11:\"size_before\";i:12534;s:10:\"size_after\";i:11271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:882;s:11:\"size_before\";i:4980;s:10:\"size_after\";i:4098;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3225;s:11:\"size_before\";i:53055;s:10:\"size_after\";i:49830;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1347;s:11:\"size_before\";i:16409;s:10:\"size_after\";i:15062;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3229;s:11:\"size_before\";i:65574;s:10:\"size_after\";i:62345;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1387;s:11:\"size_before\";i:17553;s:10:\"size_after\";i:16166;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1877;s:11:\"size_before\";i:26215;s:10:\"size_after\";i:24338;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1933;s:11:\"size_before\";i:26898;s:10:\"size_after\";i:24965;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1997;s:11:\"size_before\";i:25328;s:10:\"size_after\";i:23331;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2243,1200,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.5116505755662839050046386546455323696136474609375;s:5:\"bytes\";i:7335;s:11:\"size_before\";i:86176;s:10:\"size_after\";i:78841;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:782;s:11:\"size_before\";i:4841;s:10:\"size_after\";i:4059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:815;s:11:\"size_before\";i:2453;s:10:\"size_after\";i:1638;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:630;s:11:\"size_before\";i:18204;s:10:\"size_after\";i:17574;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:743;s:11:\"size_before\";i:5996;s:10:\"size_after\";i:5253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1208;s:11:\"size_before\";i:21612;s:10:\"size_after\";i:20404;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:798;s:11:\"size_before\";i:6214;s:10:\"size_after\";i:5416;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:796;s:11:\"size_before\";i:8779;s:10:\"size_after\";i:7983;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:776;s:11:\"size_before\";i:9079;s:10:\"size_after\";i:8303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:787;s:11:\"size_before\";i:8998;s:10:\"size_after\";i:8211;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2244,1201,'_wp_attached_file','2022/03/GOATS-MILK-IMG_5897-900PX2.jpg'),(2245,1201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:38:\"2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"GOATS-MILK-IMG_5897-900PX2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2246,1201,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.9054626372837564218798434012569487094879150390625;s:5:\"bytes\";i:10582;s:11:\"size_before\";i:153241;s:10:\"size_after\";i:142659;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:978;s:11:\"size_before\";i:8182;s:10:\"size_after\";i:7204;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:816;s:11:\"size_before\";i:3603;s:10:\"size_after\";i:2787;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1605;s:11:\"size_before\";i:31835;s:10:\"size_after\";i:30230;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:975;s:11:\"size_before\";i:11102;s:10:\"size_after\";i:10127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1645;s:11:\"size_before\";i:38779;s:10:\"size_after\";i:37134;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:974;s:11:\"size_before\";i:11304;s:10:\"size_after\";i:10330;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:16210;s:10:\"size_after\";i:15030;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1202;s:11:\"size_before\";i:16661;s:10:\"size_after\";i:15459;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:1207;s:11:\"size_before\";i:15565;s:10:\"size_after\";i:14358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2247,1202,'_wp_attached_file','2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg'),(2248,1202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:49:\"2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:49:\"HARD-BIZWAX-LOTION-CLOSED-5886-900pX3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2249,1202,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.606350169371555836050902144052088260650634765625;s:5:\"bytes\";i:6809;s:11:\"size_before\";i:79116;s:10:\"size_after\";i:72307;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:779;s:11:\"size_before\";i:4753;s:10:\"size_after\";i:3974;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:789;s:11:\"size_before\";i:2573;s:10:\"size_after\";i:1784;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:614;s:11:\"size_before\";i:16180;s:10:\"size_after\";i:15566;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:742;s:11:\"size_before\";i:5887;s:10:\"size_after\";i:5145;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:816;s:11:\"size_before\";i:18740;s:10:\"size_after\";i:17924;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:777;s:11:\"size_before\";i:6044;s:10:\"size_after\";i:5267;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:757;s:11:\"size_before\";i:8227;s:10:\"size_after\";i:7470;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:804;s:11:\"size_before\";i:8488;s:10:\"size_after\";i:7684;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:731;s:11:\"size_before\";i:8224;s:10:\"size_after\";i:7493;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2250,1203,'_wp_attached_file','2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg'),(2251,1203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:47:\"2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"HARD-BIZWAX-LOTION-OPEN-5886-900px5-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2252,1203,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.313366174931505980794099741615355014801025390625;s:5:\"bytes\";i:10971;s:11:\"size_before\";i:150013;s:10:\"size_after\";i:139042;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:8368;s:10:\"size_after\";i:7344;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:874;s:11:\"size_before\";i:3855;s:10:\"size_after\";i:2981;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1689;s:11:\"size_before\";i:30788;s:10:\"size_after\";i:29099;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1066;s:11:\"size_before\";i:11270;s:10:\"size_after\";i:10204;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:36310;s:10:\"size_after\";i:34807;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1093;s:11:\"size_before\";i:11472;s:10:\"size_after\";i:10379;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1207;s:11:\"size_before\";i:16051;s:10:\"size_after\";i:14844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1262;s:11:\"size_before\";i:16384;s:10:\"size_after\";i:15122;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1253;s:11:\"size_before\";i:15515;s:10:\"size_after\";i:14262;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2253,1204,'_wp_attached_file','2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg'),(2254,1204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:43:\"2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"LEVINDER-BUDS-Plant_5898-900px2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2255,1204,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.9626985704733161952617592760361731052398681640625;s:5:\"bytes\";i:13218;s:11:\"size_before\";i:165999;s:10:\"size_after\";i:152781;s:4:\"time\";d:0.2400000000000000188737914186276611872017383575439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1127;s:11:\"size_before\";i:9247;s:10:\"size_after\";i:8120;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:873;s:11:\"size_before\";i:4140;s:10:\"size_after\";i:3267;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2123;s:11:\"size_before\";i:33522;s:10:\"size_after\";i:31399;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:12262;s:10:\"size_after\";i:11082;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2251;s:11:\"size_before\";i:41310;s:10:\"size_after\";i:39059;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1253;s:11:\"size_before\";i:12629;s:10:\"size_after\";i:11376;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1434;s:11:\"size_before\";i:17643;s:10:\"size_after\";i:16209;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1506;s:11:\"size_before\";i:18160;s:10:\"size_after\";i:16654;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:17086;s:10:\"size_after\";i:15615;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2161,1173,'_wp_attached_file','2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg'),(2162,1173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:854;s:4:\"file\";s:49:\"2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-300x285.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-768x729.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:49:\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX-480x455.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3526,1539,'_wp_attached_file','2022/07/Q-WIND-IMG_4233-1500px.jpg'),(3527,1539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1466;s:4:\"file\";s:34:\"2022/07/Q-WIND-IMG_4233-1500px.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-300x293.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Q-WIND-IMG_4233-1500px-1024x1001.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-768x751.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:751;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Q-WIND-IMG_4233-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"Q-WIND-IMG_4233-1500px-1080x1056.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"Q-WIND-IMG_4233-1500px-1280x1251.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-980x958.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Q-WIND-IMG_4233-1500px-480x469.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1212,905,'_wp_attached_file','2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg'),(1213,905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1878;s:6:\"height\";i:2560;s:4:\"file\";s:64:\"2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-751x1024.jpg\";s:5:\"width\";i:751;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-768x1047.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1047;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-1127x1536.jpg\";s:5:\"width\";i:1127;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:59:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-1502x2048.jpg\";s:5:\"width\";i:1502;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:58:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:59:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-1080x1472.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:59:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:59:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-1280x1745.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:58:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-980x1336.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:57:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-480x654.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1637571820\";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:14:\"original_image\";s:49:\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER.jpg\";}'),(1214,906,'_wp_attached_file','2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg'),(1215,906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2171;s:6:\"height\";i:2560;s:4:\"file\";s:58:\"2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-869x1024.jpg\";s:5:\"width\";i:869;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-768x905.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:905;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-1303x1536.jpg\";s:5:\"width\";i:1303;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-1737x2048.jpg\";s:5:\"width\";i:1737;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-1080x1273.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:53:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-1280x1509.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-980x1156.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2-480x566.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1637572104\";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:14:\"original_image\";s:43:\"Francine-Boss-IMG_6435-6000PX-LIGHTER-2.jpg\";}'),(1216,905,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.7658538183597869419827475212514400482177734375;s:5:\"bytes\";i:655001;s:11:\"size_before\";i:3906756;s:10:\"size_after\";i:3251755;s:4:\"time\";d:1.5100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:74.909999999999996589394868351519107818603515625;s:5:\"bytes\";i:25540;s:11:\"size_before\";i:34094;s:10:\"size_after\";i:8554;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:31454;s:11:\"size_before\";i:128580;s:10:\"size_after\";i:97126;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.1200000000000045474735088646411895751953125;s:5:\"bytes\";i:25336;s:11:\"size_before\";i:29081;s:10:\"size_after\";i:3745;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:31871;s:11:\"size_before\";i:133620;s:10:\"size_after\";i:101749;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:40441;s:11:\"size_before\";i:271693;s:10:\"size_after\";i:231252;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:53963;s:11:\"size_before\";i:473710;s:10:\"size_after\";i:419747;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:65;s:5:\"bytes\";i:25642;s:11:\"size_before\";i:39449;s:10:\"size_after\";i:13807;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32283;s:11:\"size_before\";i:145805;s:10:\"size_after\";i:113522;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:25706;s:11:\"size_before\";i:41308;s:10:\"size_after\";i:15602;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:26139;s:11:\"size_before\";i:52291;s:10:\"size_after\";i:26152;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:39031;s:11:\"size_before\";i:250674;s:10:\"size_after\";i:211643;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:26251;s:11:\"size_before\";i:52293;s:10:\"size_after\";i:26042;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:89431;s:11:\"size_before\";i:900631;s:10:\"size_after\";i:811200;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:45111;s:11:\"size_before\";i:346900;s:10:\"size_after\";i:301789;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:36772;s:11:\"size_before\";i:209103;s:10:\"size_after\";i:172331;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.11999999999999744204615126363933086395263671875;s:5:\"bytes\";i:26723;s:11:\"size_before\";i:64981;s:10:\"size_after\";i:38258;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:73307;s:11:\"size_before\";i:732543;s:10:\"size_after\";i:659236;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(1209,902,'_wp_attached_file','2021/11/Flap-Photography-Logo-NW-300px6.png'),(1210,902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:54;s:4:\"file\";s:43:\"2021/11/Flap-Photography-Logo-NW-300px6.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Flap-Photography-Logo-NW-300px6-150x54.png\";s:5:\"width\";i:150;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1211,902,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.120961060480528459493143600411713123321533203125;s:5:\"bytes\";i:267;s:11:\"size_before\";i:1207;s:10:\"size_after\";i:940;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:267;s:11:\"size_before\";i:1207;s:10:\"size_after\";i:940;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(1239,214,'_thumbnail_id','0'),(1263,1084,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:508;s:4:\"file\";s:29:\"2021/12/CNJ-VISION-1000px.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-768x390.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-400x508.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-980x498.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"CNJ-VISION-1000px-480x244.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1264,1084,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.14681487095280232324512326158583164215087890625;s:5:\"bytes\";i:3737;s:11:\"size_before\";i:118755;s:10:\"size_after\";i:115018;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:591;s:11:\"size_before\";i:4989;s:10:\"size_after\";i:4398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:638;s:11:\"size_before\";i:3872;s:10:\"size_after\";i:3234;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.59999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:109;s:11:\"size_before\";i:18201;s:10:\"size_after\";i:18092;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:504;s:11:\"size_before\";i:8759;s:10:\"size_after\";i:8255;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:482;s:11:\"size_before\";i:9935;s:10:\"size_after\";i:9453;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:368;s:11:\"size_before\";i:15382;s:10:\"size_after\";i:15014;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:592;s:11:\"size_before\";i:20942;s:10:\"size_after\";i:20350;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27612;s:10:\"size_after\";i:27612;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:453;s:11:\"size_before\";i:9063;s:10:\"size_after\";i:8610;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(1265,71,'_thumbnail_id','0'),(1873,9,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(1262,1084,'_wp_attached_file','2021/12/CNJ-VISION-1000px.jpg'),(1253,1061,'_wp_attached_file','2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg'),(1254,1061,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2072;s:4:\"file\";s:45:\"2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Faith-Happiness-IMG_6921-2000PX-S-988x1024.jpg\";s:5:\"width\";i:988;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-768x796.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Faith-Happiness-IMG_6921-2000PX-S-1483x1536.jpg\";s:5:\"width\";i:1483;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Faith-Happiness-IMG_6921-2000PX-S-1977x2048.jpg\";s:5:\"width\";i:1977;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Faith-Happiness-IMG_6921-2000PX-S-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Faith-Happiness-IMG_6921-2000PX-S-1080x1119.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Faith-Happiness-IMG_6921-2000PX-S-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Faith-Happiness-IMG_6921-2000PX-S-1280x1326.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Faith-Happiness-IMG_6921-2000PX-S-980x1015.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Faith-Happiness-IMG_6921-2000PX-S-480x497.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1255,1062,'_wp_attached_file','2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg'),(1256,1062,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1910;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Faith-Heart-IMG_6894-2000PX-S-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Faith-Heart-IMG_6894-2000PX-S-768x1029.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"Faith-Heart-IMG_6894-2000PX-S-1146x1536.jpg\";s:5:\"width\";i:1146;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"Faith-Heart-IMG_6894-2000PX-S-1528x2048.jpg\";s:5:\"width\";i:1528;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"Faith-Heart-IMG_6894-2000PX-S-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"Faith-Heart-IMG_6894-2000PX-S-1080x1447.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"Faith-Heart-IMG_6894-2000PX-S-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"Faith-Heart-IMG_6894-2000PX-S-1280x1716.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1716;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"Faith-Heart-IMG_6894-2000PX-S-980x1314.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"Faith-Heart-IMG_6894-2000PX-S-480x643.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:33:\"Faith-Heart-IMG_6894-2000PX-S.jpg\";}'),(1257,1061,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.43570933825032565067658651969395577907562255859375;s:5:\"bytes\";i:48493;s:11:\"size_before\";i:1990919;s:10:\"size_after\";i:1942426;s:4:\"time\";d:2.1400000000000005684341886080801486968994140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:869;s:11:\"size_before\";i:13567;s:10:\"size_after\";i:12698;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2284;s:11:\"size_before\";i:106359;s:10:\"size_after\";i:104075;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:733;s:11:\"size_before\";i:5634;s:10:\"size_after\";i:4901;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1552;s:11:\"size_before\";i:65067;s:10:\"size_after\";i:63515;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4777;s:11:\"size_before\";i:248246;s:10:\"size_after\";i:243469;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8400000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:8248;s:11:\"size_before\";i:449373;s:10:\"size_after\";i:441125;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:868;s:11:\"size_before\";i:14594;s:10:\"size_after\";i:13726;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1720;s:11:\"size_before\";i:82914;s:10:\"size_after\";i:81194;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:859;s:11:\"size_before\";i:15917;s:10:\"size_after\";i:15058;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1010;s:11:\"size_before\";i:24735;s:10:\"size_after\";i:23725;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2735;s:11:\"size_before\";i:127396;s:10:\"size_after\";i:124661;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:1106;s:11:\"size_before\";i:27681;s:10:\"size_after\";i:26575;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:14817;s:11:\"size_before\";i:494233;s:10:\"size_after\";i:479416;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3604;s:11:\"size_before\";i:181826;s:10:\"size_after\";i:178222;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:2276;s:11:\"size_before\";i:104572;s:10:\"size_after\";i:102296;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1035;s:11:\"size_before\";i:28805;s:10:\"size_after\";i:27770;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(1258,1063,'_wp_attached_file','2021/12/FAITH-JOY-6885-2000PX-S.jpg'),(1259,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2234;s:4:\"file\";s:35:\"2021/12/FAITH-JOY-6885-2000PX-S.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"FAITH-JOY-6885-2000PX-S-917x1024.jpg\";s:5:\"width\";i:917;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-768x858.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"FAITH-JOY-6885-2000PX-S-1375x1536.jpg\";s:5:\"width\";i:1375;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"FAITH-JOY-6885-2000PX-S-1833x2048.jpg\";s:5:\"width\";i:1833;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"FAITH-JOY-6885-2000PX-S-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"FAITH-JOY-6885-2000PX-S-1080x1206.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:37:\"FAITH-JOY-6885-2000PX-S-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"FAITH-JOY-6885-2000PX-S-1280x1430.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"FAITH-JOY-6885-2000PX-S-980x1095.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"FAITH-JOY-6885-2000PX-S-480x536.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3154,1463,'_wp_attached_file','2022/07/KCJ-Photography-BLA-Logo-300PX.png'),(3155,1463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:88;s:4:\"file\";s:42:\"2022/07/KCJ-Photography-BLA-Logo-300PX.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"KCJ-Photography-BLA-Logo-300PX-150x88.png\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1879,71,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(3031,1385,'_wp_attached_file','2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg'),(3032,1385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1431;s:4:\"file\";s:47:\"2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-CP2-1024x586.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-CP2-1536x879.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:879;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Noelle-Headshot-IMG_5345-2500PX-CP2-2048x1172.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-CP2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-CP2-1080x618.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-CP2-1280x733.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-980x561.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-CP2-480x275.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3871,1620,'_wp_attached_file','2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg'),(3063,1404,'_wp_attached_file','2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg'),(3064,1404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1296;s:4:\"file\";s:39:\"2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-CP-1024x664.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-CP-1536x995.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:995;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-CP-1080x700.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"IMG_4142-PR-Suite-2000PX-CP-1280x829.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-980x635.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"IMG_4142-PR-Suite-2000PX-CP-480x311.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1591,1137,'_edit_last','1'),(1592,1137,'et_pb_divioverlay_effect_entrance','rollIn'),(1593,1137,'et_pb_divioverlay_effect_exit','lightSpeedOutRight'),(1594,1137,'dov_effect_entrance_speed','1'),(1595,1137,'dov_effect_exit_speed','1'),(1596,1137,'post_overlay_bg_color','rgba(0,0,0,0.01)'),(1597,1137,'do_enablebgblur','1'),(1598,1137,'post_do_preventscroll','1'),(1599,1137,'do_at_pages','all'),(1600,1137,'do_at_pages_selected',''),(1601,1137,'do_at_pagesexception_selected',''),(1602,1137,'category_at_categories','all'),(1603,1137,'category_at_categories_selected',''),(1604,1137,'category_at_exceptioncategories_selected',''),(1605,1137,'tag_at_tags','all'),(1606,1137,'tag_at_tags_selected',''),(1607,1137,'tag_at_exceptiontags_selected',''),(1608,1137,'do_displaylocations_archive','0'),(1609,1137,'do_displaylocations_author','0'),(1610,1137,'do_forcerender','0'),(1611,1137,'post_css_selector',''),(1612,1137,'css_selector_at_pages_selected',''),(1613,1137,'post_enableurltrigger','0'),(1614,1137,'do_enableajax','0'),(1615,1137,'do_showguests','0'),(1616,1137,'do_showusers','0'),(1617,1137,'overlay_automatictrigger','0'),(1618,1137,'overlay_automatictrigger_onceperload','0'),(1619,1137,'overlay_automatictrigger_disablemobile','0'),(1620,1137,'overlay_automatictrigger_disabletablet','0'),(1621,1137,'overlay_automatictrigger_disabledesktop','0'),(1622,1137,'dov_closebtn_cookie','0'),(1623,1137,'post_do_hideclosebtn','0'),(1624,1137,'post_do_customizeclosebtn','1'),(1625,1137,'post_doclosebtn_text_color','#000000'),(1626,1137,'post_doclosebtn_bg_color','#ffffff'),(1627,1137,'post_doclosebtn_fontsize','102'),(1628,1137,'post_doclosebtn_borderradius',''),(1629,1137,'post_doclosebtn_padding','18'),(1630,1137,'do_enable_scheduling','0'),(1503,1133,'_edit_last','1'),(1504,1133,'et_pb_divioverlay_effect_entrance','rollIn'),(1505,1133,'et_pb_divioverlay_effect_exit','lightSpeedOutRight'),(1506,1133,'dov_effect_entrance_speed','1'),(1507,1133,'dov_effect_exit_speed','1'),(1508,1133,'post_overlay_bg_color','rgba(0,0,0,0.01)'),(1509,1133,'do_enablebgblur','1'),(1510,1133,'post_do_preventscroll','1'),(1511,1133,'do_at_pages','all'),(1512,1133,'do_at_pages_selected',''),(1513,1133,'do_at_pagesexception_selected',''),(1514,1133,'category_at_categories','all'),(1515,1133,'category_at_categories_selected',''),(1516,1133,'category_at_exceptioncategories_selected',''),(1517,1133,'tag_at_tags','all'),(1518,1133,'tag_at_tags_selected',''),(1519,1133,'tag_at_exceptiontags_selected',''),(1520,1133,'do_displaylocations_archive','0'),(1521,1133,'do_displaylocations_author','0'),(1522,1133,'do_forcerender','0'),(1523,1133,'post_css_selector',''),(1524,1133,'css_selector_at_pages_selected',''),(1525,1133,'post_enableurltrigger','0'),(1526,1133,'do_enableajax','0'),(1527,1133,'do_showguests','0'),(1528,1133,'do_showusers','0'),(1529,1133,'overlay_automatictrigger','0'),(1530,1133,'overlay_automatictrigger_onceperload','0'),(1531,1133,'overlay_automatictrigger_disablemobile','0'),(1532,1133,'overlay_automatictrigger_disabletablet','0'),(1533,1133,'overlay_automatictrigger_disabledesktop','0'),(1534,1133,'dov_closebtn_cookie','0'),(1535,1133,'post_do_hideclosebtn','0'),(1536,1133,'post_do_customizeclosebtn','1'),(1537,1133,'post_doclosebtn_text_color','#000000'),(1538,1133,'post_doclosebtn_bg_color','#ffffff'),(1539,1133,'post_doclosebtn_fontsize','100'),(1540,1133,'post_doclosebtn_borderradius',''),(1541,1133,'post_doclosebtn_padding','18'),(1542,1133,'do_enable_scheduling','0'),(1543,1133,'_et_pb_post_hide_nav','default'),(1544,1133,'_et_pb_page_layout','et_right_sidebar'),(1545,1133,'_et_pb_side_nav','off'),(1546,1133,'_et_pb_use_builder','on'),(1547,1133,'_et_pb_first_image',''),(1548,1133,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"1000\" height=\"508\" src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" alt=\"\" title=\"CNJ-VISION-1000px\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg 1000w, https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px-980x498.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px-480x244.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1000px, 100vw\" class=\"wp-image-1084\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_1\" class=\"et_pb_with_border et_pb_module et_pb_contact_form_1 cu-form et_pb_contact_form_container clearfix\" data-form_unique_num=\"1\" data-form_unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\">\n				\n				\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">MAKE A RESERVATION</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://flaphotography.com/divi_overlay/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_10 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_1\" class=\"et_pb_contact_form_label\">Full Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_1\" class=\"input\" value=\"\" name=\"et_pb_contact_name_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Full Name\" pattern=\"[A-Z|a-z|s-]*\" title=\"Only letters allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_11 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_phone_1\" class=\"et_pb_contact_form_label\">Phone # (Optional)</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_1\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_1\" data-required_mark=\"not_required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone # (Optional)\" pattern=\"[0-9s-]*\" title=\"Only numbers allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_12 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_1\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_1\" class=\"input\" value=\"\" name=\"et_pb_contact_email_1\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_13 et_pb_contact_field_last\" data-id=\"yourneeds\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_yourneeds_1\" class=\"et_pb_contact_form_label\">Select your needs.</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_yourneeds_1\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"yourneeds\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your needs.</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_13_0\" class=\"input\" value=\"Corporate Headshots\" data-id=\"-1\">\n							<label for=\"et_pb_contact_yourneeds_13_0\"><i></i>Corporate Headshots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_13_1\" class=\"input\" value=\"Corporate Shots on Location\" data-id=\"0\">\n							<label for=\"et_pb_contact_yourneeds_13_1\"><i></i>Corporate Shots on Location</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_13_2\" class=\"input\" value=\"Personal Branding - Lifestyle, Artists, Creators\" data-id=\"1\">\n							<label for=\"et_pb_contact_yourneeds_13_2\"><i></i>Personal Branding - Lifestyle, Artists, Creators</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_13_3\" class=\"input\" value=\"Personal Branding - On Location\" data-id=\"2\">\n							<label for=\"et_pb_contact_yourneeds_13_3\"><i></i>Personal Branding - On Location</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_14 et_pb_contact_field_last\" data-id=\"package\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_package_1\" class=\"et_pb_contact_form_label\">Select your package</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your package</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_1_14_0\" class=\"input\" value=\"$210 / 3 Retouched Photos\" name=\"et_pb_contact_package_1\" data-required_mark=\"not_required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_package_1_14_0\"><i></i>$210 / 3 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_1_14_1\" class=\"input\" value=\"$349 / 6 Retouched Photos\" name=\"et_pb_contact_package_1\" data-required_mark=\"not_required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"0\">\n								<label for=\"et_pb_contact_package_1_14_1\"><i></i>$349 / 6 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_1_14_2\" class=\"input\" value=\"$449 / 10 Retouched Photos\" name=\"et_pb_contact_package_1\" data-required_mark=\"not_required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"1\">\n								<label for=\"et_pb_contact_package_1_14_2\"><i></i>$449 / 10 Retouched Photos</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_15 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;your-needs&quot;,&quot;is&quot;,&quot;Corporate Headshots&quot;],[&quot;your-needs&quot;,&quot;is&quot;,&quot;Corporate Shots on Location&quot;]]\" data-conditional-relation=\"any\" data-id=\"companyname\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_companyname_1\" class=\"et_pb_contact_form_label\">Name of your company?</label>\n				<input type=\"text\" id=\"et_pb_contact_companyname_1\" class=\"input\" value=\"\" name=\"et_pb_contact_companyname_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"companyname\" placeholder=\"Name of your company?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_16 et_pb_contact_field_last\" data-id=\"date-time-picker\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_date-time-picker_1\" class=\"et_pb_contact_form_label\">What date would you like the services?</label>\n				<input type=\"text\" id=\"et_pb_contact_date-time-picker_1\" class=\"input\" value=\"\" name=\"et_pb_contact_date-time-picker_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"date-time-picker\" placeholder=\"What date would you like the services?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_17 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is not empty&quot;,&quot;$210 / 3 Retouched Photos&quot;]]\" data-conditional-relation=\"any\" data-id=\"firsttime\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_firsttime_1\" class=\"et_pb_contact_form_label\">Is it your first time in a studio setting?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Is it your first time in a studio setting?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_1_17_0\" class=\"input\" value=\"Yes, it is.\" name=\"et_pb_contact_firsttime_1\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_firsttime_1_17_0\"><i></i>Yes, it is.</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_firsttime_1_17_1\" class=\"input\" value=\"No, it is not.\" name=\"et_pb_contact_firsttime_1\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"firsttime\"  data-id=\"0\">\n								<label for=\"et_pb_contact_firsttime_1_17_1\"><i></i>No, it is not.</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_18 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is not empty&quot;,&quot;$210 / 3 Retouched Photos&quot;]]\" data-conditional-relation=\"any\" data-id=\"heardfrom\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_heardfrom_1\" class=\"et_pb_contact_form_label\">How did you hear about this offer?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">How did you hear about this offer?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_1_18_0\" class=\"input\" value=\"Social Media Post\" name=\"et_pb_contact_heardfrom_1\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_heardfrom_1_18_0\"><i></i>Social Media Post</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_1_18_1\" class=\"input\" value=\"A Friend\" name=\"et_pb_contact_heardfrom_1\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"1\">\n								<label for=\"et_pb_contact_heardfrom_1_18_1\"><i></i>A Friend</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_heardfrom_1_18_2\" class=\"input\" value=\"Other\" name=\"et_pb_contact_heardfrom_1\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"heardfrom\"  data-id=\"2\">\n								<label for=\"et_pb_contact_heardfrom_1_18_2\"><i></i>Other</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_19 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_1\" class=\"et_pb_contact_form_label\">Message (optional)</label>\n				<textarea name=\"et_pb_contact_message_1\" id=\"et_pb_contact_message_1\" class=\"et_pb_contact_message input\" data-required_mark=\"not_required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message (optional)\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_1\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\" data-icon=\"&#x4e;\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-1\" name=\"_wpnonce-et-pb-contact-form-submitted-1\" value=\"d4e3d152c6\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/divi_overlay/\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(1549,1133,'_et_pb_truncate_post_date','2022-10-18 04:53:22'),(1550,1133,'_et_pb_old_content',''),(1551,1133,'_yoast_wpseo_estimated-reading-time-minutes','2'),(1552,1133,'_edit_lock','1663765869:1'),(1553,1133,'_et_pb_built_for_post_type','page'),(1554,1133,'_et_pb_ab_subjects',''),(1555,1133,'_et_pb_enable_shortcode_tracking',''),(1556,1133,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1133\" /]'),(1557,1133,'_et_pb_custom_css',''),(1558,1133,'_et_pb_gutter_width','3'),(1559,1133,'_thumbnail_id','0'),(1560,1133,'_global_colors_info','{}'),(1561,1133,'_et_builder_version','VB|Divi|4.18.0'),(1562,1133,'_et_pb_show_page_creation','off'),(1563,1133,'_yoast_wpseo_content_score','90'),(1903,25,'_et_builder_dynamic_assets_loading_attr_threshold','17'),(1500,1131,'_et_pb_built_for_post_type','page'),(1501,1132,'_et_pb_row_layout','4_4'),(1502,1132,'_et_pb_built_for_post_type','page'),(3524,1538,'_wp_attached_file','2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg'),(3525,1538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1292;s:4:\"file\";s:39:\"2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Q-LEAN-GAZE-IMG_4228-1500px-1024x882.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:882;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-768x662.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"Q-LEAN-GAZE-IMG_4228-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Q-LEAN-GAZE-IMG_4228-1500px-1080x930.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:930;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"Q-LEAN-GAZE-IMG_4228-1500px-1280x1103.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-980x844.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"Q-LEAN-GAZE-IMG_4228-1500px-480x413.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2881,1305,'_wp_attached_file','2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg'),(2882,1305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2115;s:4:\"file\";s:44:\"2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-726x1024.jpg\";s:5:\"width\";i:726;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-768x1083.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1083;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1089x1536.jpg\";s:5:\"width\";i:1089;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1452x2048.jpg\";s:5:\"width\";i:1452;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1080x1523.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-1280x1805.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1805;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-980x1382.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-1500pxc1-480x677.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1899,98,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(3559,1549,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6891817885793789510984197477228008210659027099609375;s:5:\"bytes\";i:3725;s:11:\"size_before\";i:540496;s:10:\"size_after\";i:536771;s:4:\"time\";d:0.54000000000000014654943925052066333591938018798828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:545;s:11:\"size_before\";i:6533;s:10:\"size_after\";i:5988;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37778;s:10:\"size_after\";i:37778;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:644;s:11:\"size_before\";i:4170;s:10:\"size_after\";i:3526;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.4699999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:111;s:11:\"size_before\";i:23622;s:10:\"size_after\";i:23511;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81196;s:10:\"size_after\";i:81196;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:149357;s:10:\"size_after\";i:149357;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:519;s:11:\"size_before\";i:9008;s:10:\"size_after\";i:8489;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40124;s:10:\"size_after\";i:40124;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:509;s:11:\"size_before\";i:9851;s:10:\"size_after\";i:9342;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:456;s:11:\"size_before\";i:14342;s:10:\"size_after\";i:13886;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41648;s:10:\"size_after\";i:41648;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:535;s:11:\"size_before\";i:18635;s:10:\"size_after\";i:18100;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56937;s:10:\"size_after\";i:56937;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35404;s:10:\"size_after\";i:35404;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:406;s:11:\"size_before\";i:11891;s:10:\"size_after\";i:11485;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(2974,1358,'_wp_attached_file','2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg'),(2975,1358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1783;s:4:\"file\";s:46:\"2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-252x300.jpg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Francine-BOSS-STAR-IMG_6433-1500PX-861x1024.jpg\";s:5:\"width\";i:861;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-768x913.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:913;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Francine-BOSS-STAR-IMG_6433-1500PX-1292x1536.jpg\";s:5:\"width\";i:1292;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Francine-BOSS-STAR-IMG_6433-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Francine-BOSS-STAR-IMG_6433-1500PX-1080x1284.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Francine-BOSS-STAR-IMG_6433-1500PX-1280x1521.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Francine-BOSS-STAR-IMG_6433-1500PX-980x1165.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"Francine-BOSS-STAR-IMG_6433-1500PX-480x571.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1408,1114,'_et_pb_built_for_post_type','page'),(1409,1114,'_et_pb_ab_subjects',''),(1410,1114,'_et_pb_enable_shortcode_tracking',''),(1411,1114,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1114\" /]'),(1412,1114,'_et_pb_custom_css',''),(1413,1114,'_et_pb_gutter_width','3'),(1414,1114,'_thumbnail_id','0'),(1415,1114,'_global_colors_info','{}'),(1416,1114,'_et_builder_version','VB|Divi|4.18.0'),(1417,1114,'_et_pb_show_page_creation','off'),(2751,1261,'_et_pb_built_for_post_type','page'),(2875,1302,'_wp_attached_file','2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg'),(2876,1302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2151;s:4:\"file\";s:46:\"2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-714x1024.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-768x1101.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1071x1536.jpg\";s:5:\"width\";i:1071;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1428x2048.jpg\";s:5:\"width\";i:1428;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1080x1549.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-1280x1836.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1836;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-980x1405.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"IMG_4526-1-LOOK-THE-FINAL-1500PXC2-480x688.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3872,1620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1702;s:4:\"file\";s:44:\"2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-902x1024.jpg\";s:5:\"width\";i:902;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-768x871.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-1354x1536.jpg\";s:5:\"width\";i:1354;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-1080x1225.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-1280x1452.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-980x1112.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"IDRAS-BENCH-LEAN-IMG_1484-1500px-480x545.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1685,1147,'_wp_attached_file','2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg'),(1686,1147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2235;s:6:\"height\";i:2209;s:4:\"file\";s:44:\"2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1024x1012.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1012;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-768x759.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1536x1518.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-2048x2024.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Meranda_MG_9390-2500PX-RNEW-CROP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1080x1067.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-2235x1800.jpg\";s:5:\"width\";i:2235;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Meranda_MG_9390-2500PX-RNEW-CROP-1280x1265.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-980x969.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Meranda_MG_9390-2500PX-RNEW-CROP-480x474.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1632091336\";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\";}}'),(1687,1147,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.6651744027593480268478742800652980804443359375;s:5:\"bytes\";i:555036;s:11:\"size_before\";i:2685852;s:10:\"size_after\";i:2130816;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.93000000000000682121026329696178436279296875;s:5:\"bytes\";i:27544;s:11:\"size_before\";i:41153;s:10:\"size_after\";i:13609;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:34219;s:11:\"size_before\";i:163005;s:10:\"size_after\";i:128786;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:27127;s:11:\"size_before\";i:31614;s:10:\"size_after\";i:4487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:29;s:5:\"bytes\";i:30886;s:11:\"size_before\";i:106500;s:10:\"size_after\";i:75614;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:44171;s:11:\"size_before\";i:315838;s:10:\"size_after\";i:271667;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:54637;s:11:\"size_before\";i:508928;s:10:\"size_after\";i:454291;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:27660;s:11:\"size_before\";i:43887;s:10:\"size_after\";i:16227;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:32439;s:11:\"size_before\";i:130951;s:10:\"size_after\";i:98512;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.75999999999999801048033987171947956085205078125;s:5:\"bytes\";i:27764;s:11:\"size_before\";i:45691;s:10:\"size_after\";i:17927;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:28246;s:11:\"size_before\";i:57430;s:10:\"size_after\";i:29184;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:35298;s:11:\"size_before\";i:177152;s:10:\"size_after\";i:141854;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:28405;s:11:\"size_before\";i:63546;s:10:\"size_after\";i:35141;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:55922;s:11:\"size_before\";i:553946;s:10:\"size_after\";i:498024;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:38649;s:11:\"size_before\";i:233305;s:10:\"size_after\";i:194656;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:33637;s:11:\"size_before\";i:152668;s:10:\"size_after\";i:119031;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:28432;s:11:\"size_before\";i:60238;s:10:\"size_after\";i:31806;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(1688,1148,'_wp_attached_file','2021/12/JAMIE-IMG_7372-1300PX.jpg'),(1689,1148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:33:\"2021/12/JAMIE-IMG_7372-1300PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"JAMIE-IMG_7372-1300PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"JAMIE-IMG_7372-1300PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"JAMIE-IMG_7372-1300PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"JAMIE-IMG_7372-1300PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"JAMIE-IMG_7372-1300PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1690,1148,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.078575304135707568775615072809159755706787109375;s:5:\"bytes\";i:27462;s:11:\"size_before\";i:892036;s:10:\"size_after\";i:864574;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:974;s:11:\"size_before\";i:15622;s:10:\"size_after\";i:14648;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:3447;s:11:\"size_before\";i:126753;s:10:\"size_after\";i:123306;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:812;s:11:\"size_before\";i:6204;s:10:\"size_after\";i:5392;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2361;s:11:\"size_before\";i:72767;s:10:\"size_after\";i:70406;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:948;s:11:\"size_before\";i:16196;s:10:\"size_after\";i:15248;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2392;s:11:\"size_before\";i:89640;s:10:\"size_after\";i:87248;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1027;s:11:\"size_before\";i:18230;s:10:\"size_after\";i:17203;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1215;s:11:\"size_before\";i:27877;s:10:\"size_after\";i:26662;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3550;s:11:\"size_before\";i:140713;s:10:\"size_after\";i:137163;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:32117;s:10:\"size_after\";i:30738;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4759;s:11:\"size_before\";i:196821;s:10:\"size_after\";i:192062;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3277;s:11:\"size_before\";i:117403;s:10:\"size_after\";i:114126;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1321;s:11:\"size_before\";i:31693;s:10:\"size_after\";i:30372;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1691,1149,'_wp_attached_file','2021/12/ADRIAN-IMG_7328-1300px.jpg'),(1692,1149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:34:\"2021/12/ADRIAN-IMG_7328-1300px.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"ADRIAN-IMG_7328-1300px-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"ADRIAN-IMG_7328-1300px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"ADRIAN-IMG_7328-1300px-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"ADRIAN-IMG_7328-1300px-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"ADRIAN-IMG_7328-1300px-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1693,1149,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.961434549981458719258853307110257446765899658203125;s:5:\"bytes\";i:33651;s:11:\"size_before\";i:849465;s:10:\"size_after\";i:815814;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1042;s:11:\"size_before\";i:14664;s:10:\"size_after\";i:13622;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:4385;s:11:\"size_before\";i:121816;s:10:\"size_after\";i:117431;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:815;s:11:\"size_before\";i:5793;s:10:\"size_after\";i:4978;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:2701;s:11:\"size_before\";i:68732;s:10:\"size_after\";i:66031;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1004;s:11:\"size_before\";i:14615;s:10:\"size_after\";i:13611;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2937;s:11:\"size_before\";i:80403;s:10:\"size_after\";i:77466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1066;s:11:\"size_before\";i:16497;s:10:\"size_after\";i:15431;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1300;s:11:\"size_before\";i:25283;s:10:\"size_after\";i:23983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5;s:5:\"bytes\";i:4749;s:11:\"size_before\";i:135817;s:10:\"size_after\";i:131068;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1479;s:11:\"size_before\";i:31515;s:10:\"size_after\";i:30036;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6737;s:11:\"size_before\";i:192143;s:10:\"size_after\";i:185406;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:3963;s:11:\"size_before\";i:112292;s:10:\"size_after\";i:108329;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1473;s:11:\"size_before\";i:29895;s:10:\"size_after\";i:28422;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(1470,208,'_wp_old_date','2021-12-09'),(1471,213,'_wp_old_date','2021-12-09'),(1472,211,'_wp_old_date','2021-12-09'),(1473,209,'_wp_old_date','2021-12-09'),(1476,359,'_wp_old_date','2021-12-09'),(1477,238,'_wp_old_date','2021-12-09'),(1478,430,'_wp_old_date','2021-12-09'),(1347,1110,'_wp_attached_file','2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg'),(1348,1110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1580;s:4:\"file\";s:41:\"2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"FAITH-JOY-6885-1500PX-CROP8-2-972x1024.jpg\";s:5:\"width\";i:972;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-768x809.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"FAITH-JOY-6885-1500PX-CROP8-2-1458x1536.jpg\";s:5:\"width\";i:1458;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"FAITH-JOY-6885-1500PX-CROP8-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"FAITH-JOY-6885-1500PX-CROP8-2-1080x1138.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"FAITH-JOY-6885-1500PX-CROP8-2-1280x1348.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"FAITH-JOY-6885-1500PX-CROP8-2-980x1032.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"FAITH-JOY-6885-1500PX-CROP8-2-480x506.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(1349,1110,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.293421018180702208866250657592900097370147705078125;s:5:\"bytes\";i:25402;s:11:\"size_before\";i:1107603;s:10:\"size_after\";i:1082201;s:4:\"time\";d:0.760000000000000230926389122032560408115386962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:900;s:11:\"size_before\";i:13657;s:10:\"size_after\";i:12757;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:2223;s:11:\"size_before\";i:111244;s:10:\"size_after\";i:109021;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:779;s:11:\"size_before\";i:5864;s:10:\"size_after\";i:5085;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1680;s:11:\"size_before\";i:70357;s:10:\"size_after\";i:68677;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:4469;s:11:\"size_before\";i:252836;s:10:\"size_after\";i:248367;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:973;s:11:\"size_before\";i:16059;s:10:\"size_after\";i:15086;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1850;s:11:\"size_before\";i:89977;s:10:\"size_after\";i:88127;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:991;s:11:\"size_before\";i:17571;s:10:\"size_after\";i:16580;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1139;s:11:\"size_before\";i:26688;s:10:\"size_after\";i:25549;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2583;s:11:\"size_before\";i:137848;s:10:\"size_after\";i:135265;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1163;s:11:\"size_before\";i:28600;s:10:\"size_after\";i:27437;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:3326;s:11:\"size_before\";i:193561;s:10:\"size_after\";i:190235;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2239;s:11:\"size_before\";i:112903;s:10:\"size_after\";i:110664;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:30438;s:10:\"size_after\";i:29351;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2976,1358,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.04858715382293343765240933862514793872833251953125;s:5:\"bytes\";i:64054;s:11:\"size_before\";i:1268751;s:10:\"size_after\";i:1204697;s:4:\"time\";d:0.6900000000000001687538997430237941443920135498046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:907;s:11:\"size_before\";i:10161;s:10:\"size_after\";i:9254;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5774;s:11:\"size_before\";i:111387;s:10:\"size_after\";i:105613;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:664;s:11:\"size_before\";i:4257;s:10:\"size_after\";i:3593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:4747;s:11:\"size_before\";i:87322;s:10:\"size_after\";i:82575;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12463;s:11:\"size_before\";i:262078;s:10:\"size_after\";i:249615;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:923;s:11:\"size_before\";i:13468;s:10:\"size_after\";i:12545;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:3955;s:11:\"size_before\";i:93008;s:10:\"size_after\";i:89053;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1024;s:11:\"size_before\";i:15311;s:10:\"size_after\";i:14287;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1388;s:11:\"size_before\";i:25073;s:10:\"size_after\";i:23685;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:9006;s:11:\"size_before\";i:181379;s:10:\"size_after\";i:172373;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1570;s:11:\"size_before\";i:26729;s:10:\"size_after\";i:25159;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:12422;s:11:\"size_before\";i:257531;s:10:\"size_after\";i:245109;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7424;s:11:\"size_before\";i:147778;s:10:\"size_after\";i:140354;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1787;s:11:\"size_before\";i:33269;s:10:\"size_after\";i:31482;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2336,1240,'_wp_attached_file','2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg'),(2337,1240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:669;s:4:\"file\";s:38:\"2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-768x571.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"ASH-GAZE-IMG_0003_3-900PX3-480x357.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2338,1240,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.68931389665730957716505145072005689144134521484375;s:5:\"bytes\";i:10721;s:11:\"size_before\";i:188441;s:10:\"size_after\";i:177720;s:4:\"time\";d:0.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1122;s:11:\"size_before\";i:12144;s:10:\"size_after\";i:11022;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:952;s:11:\"size_before\";i:6628;s:10:\"size_after\";i:5676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2068;s:11:\"size_before\";i:52132;s:10:\"size_after\";i:50064;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1155;s:11:\"size_before\";i:15854;s:10:\"size_after\";i:14699;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1220;s:11:\"size_before\";i:17656;s:10:\"size_after\";i:16436;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1417;s:11:\"size_before\";i:26713;s:10:\"size_after\";i:25296;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1422;s:11:\"size_before\";i:33258;s:10:\"size_after\";i:31836;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1365;s:11:\"size_before\";i:24056;s:10:\"size_after\";i:22691;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(2157,1171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2417;s:4:\"file\";s:56:\"2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-4000px--scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--1024x967.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:967;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--768x725.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--1536x1450.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--2048x1933.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1933;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:50:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:51:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--1080x1020.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:51:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:51:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--1280x1209.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--980x925.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px--480x453.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:41:\"RACHEL-BOSS_8544-BLUE-STRONG2-4000px-.jpg\";}'),(2158,1172,'_wp_attached_file','2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg'),(2159,1172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:899;s:4:\"file\";s:47:\"2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX-480x479.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2160,1172,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.69180528625369941408962404238991439342498779296875;s:5:\"bytes\";i:18390;s:11:\"size_before\";i:391960;s:10:\"size_after\";i:373570;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1221;s:11:\"size_before\";i:20230;s:10:\"size_after\";i:19009;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:785;s:11:\"size_before\";i:7284;s:10:\"size_after\";i:6499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:3378;s:11:\"size_before\";i:89462;s:10:\"size_after\";i:86084;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1244;s:11:\"size_before\";i:21612;s:10:\"size_after\";i:20368;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:4678;s:11:\"size_before\";i:107213;s:10:\"size_after\";i:102535;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1329;s:11:\"size_before\";i:23895;s:10:\"size_after\";i:22566;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:36931;s:10:\"size_after\";i:35114;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2004;s:11:\"size_before\";i:43411;s:10:\"size_after\";i:41407;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1934;s:11:\"size_before\";i:41922;s:10:\"size_after\";i:39988;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(3558,1549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1635;s:4:\"file\";s:44:\"2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-1024x670.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-768x502.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-1536x1005.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-2048x1339.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-1080x706.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-1280x837.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:837;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-980x641.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP-480x314.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2189,1177,'_wp_attached_file','2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg'),(2190,1177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"TURMERIC-Plant-IMG_5902-900PX2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2191,1177,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6834953899908580154942683293484151363372802734375;s:5:\"bytes\";i:18057;s:11:\"size_before\";i:270173;s:10:\"size_after\";i:252116;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1310;s:11:\"size_before\";i:13079;s:10:\"size_after\";i:11769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:918;s:11:\"size_before\";i:5405;s:10:\"size_after\";i:4487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3392;s:11:\"size_before\";i:56603;s:10:\"size_after\";i:53211;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1316;s:11:\"size_before\";i:17337;s:10:\"size_after\";i:16021;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3942;s:11:\"size_before\";i:76821;s:10:\"size_after\";i:72879;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:18530;s:10:\"size_after\";i:17106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1891;s:11:\"size_before\";i:27756;s:10:\"size_after\";i:25865;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1940;s:11:\"size_before\";i:28470;s:10:\"size_after\";i:26530;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1924;s:11:\"size_before\";i:26172;s:10:\"size_after\";i:24248;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3557,1549,'_wp_attached_file','2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg'),(4242,1752,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.355542931342314627585210473625920712947845458984375;s:5:\"bytes\";i:31347;s:11:\"size_before\";i:1330776;s:10:\"size_after\";i:1299429;s:4:\"time\";d:1.0500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:782;s:11:\"size_before\";i:9911;s:10:\"size_after\";i:9129;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1637;s:11:\"size_before\";i:62377;s:10:\"size_after\";i:60740;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:776;s:11:\"size_before\";i:5554;s:10:\"size_after\";i:4778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1706;s:11:\"size_before\";i:71228;s:10:\"size_after\";i:69522;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:125815;s:10:\"size_after\";i:123175;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5900000000000000799360577730112709105014801025390625;s:5:\"bytes\";i:3358;s:11:\"size_before\";i:211284;s:10:\"size_after\";i:207926;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:911;s:11:\"size_before\";i:14603;s:10:\"size_after\";i:13692;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1980;s:11:\"size_before\";i:74186;s:10:\"size_after\";i:72206;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:920;s:11:\"size_before\";i:15989;s:10:\"size_after\";i:15069;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1013;s:11:\"size_before\";i:24065;s:10:\"size_after\";i:23052;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:2576;s:11:\"size_before\";i:128646;s:10:\"size_after\";i:126070;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1009;s:11:\"size_before\";i:23989;s:10:\"size_after\";i:22980;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5866;s:11:\"size_before\";i:247210;s:10:\"size_after\";i:241344;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2915;s:11:\"size_before\";i:174372;s:10:\"size_after\";i:171457;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2100;s:11:\"size_before\";i:108346;s:10:\"size_after\";i:106246;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1158;s:11:\"size_before\";i:33201;s:10:\"size_after\";i:32043;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(1644,1137,'_et_pb_built_for_post_type','page'),(1645,1137,'_et_pb_ab_subjects',''),(1646,1137,'_et_pb_enable_shortcode_tracking',''),(1647,1137,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1137\" /]'),(1648,1137,'_et_pb_custom_css',''),(1649,1137,'_et_pb_gutter_width','3'),(1650,1137,'_thumbnail_id','0'),(1651,1137,'_global_colors_info','{}'),(1652,1137,'_et_builder_version','VB|Divi|4.14.4'),(1653,1137,'_et_pb_show_page_creation','off'),(1654,1137,'_yoast_wpseo_content_score','90'),(3784,1584,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.104803536833738775158053613267838954925537109375;s:5:\"bytes\";i:128456;s:11:\"size_before\";i:2516375;s:10:\"size_after\";i:2387919;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2482;s:11:\"size_before\";i:36042;s:10:\"size_after\";i:33560;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:17409;s:11:\"size_before\";i:349184;s:10:\"size_after\";i:331775;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1182;s:11:\"size_before\";i:12162;s:10:\"size_after\";i:10980;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:10890;s:11:\"size_before\";i:206635;s:10:\"size_after\";i:195745;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:3292;s:11:\"size_before\";i:50178;s:10:\"size_after\";i:46886;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:15663;s:11:\"size_before\";i:312057;s:10:\"size_after\";i:296394;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3571;s:11:\"size_before\";i:55624;s:10:\"size_after\";i:52053;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5334;s:11:\"size_before\";i:91451;s:10:\"size_after\";i:86117;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18608;s:11:\"size_before\";i:385219;s:10:\"size_after\";i:366611;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4738;s:11:\"size_before\";i:86736;s:10:\"size_after\";i:81998;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:24130;s:11:\"size_before\";i:521238;s:10:\"size_after\";i:497108;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:16062;s:11:\"size_before\";i:324055;s:10:\"size_after\";i:307993;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:5095;s:11:\"size_before\";i:85794;s:10:\"size_after\";i:80699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3785,1585,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.7863584376330281511258135651587508618831634521484375;s:5:\"bytes\";i:20898;s:11:\"size_before\";i:1169866;s:10:\"size_after\";i:1148968;s:4:\"time\";d:0.7300000000000002042810365310288034379482269287109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:785;s:11:\"size_before\";i:10657;s:10:\"size_after\";i:9872;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1167;s:11:\"size_before\";i:60804;s:10:\"size_after\";i:59637;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:741;s:11:\"size_before\";i:5484;s:10:\"size_after\";i:4743;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:1195;s:11:\"size_before\";i:65608;s:10:\"size_after\";i:64413;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1465;s:11:\"size_before\";i:115780;s:10:\"size_after\";i:114315;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.419999999999999984456877655247808434069156646728515625;s:5:\"bytes\";i:791;s:11:\"size_before\";i:189277;s:10:\"size_after\";i:188486;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:812;s:11:\"size_before\";i:12418;s:10:\"size_after\";i:11606;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1283;s:11:\"size_before\";i:54813;s:10:\"size_after\";i:53530;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:912;s:11:\"size_before\";i:14225;s:10:\"size_after\";i:13313;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:21142;s:10:\"size_after\";i:20131;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:113216;s:10:\"size_after\";i:111716;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1043;s:11:\"size_before\";i:24189;s:10:\"size_after\";i:23146;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4480;s:11:\"size_before\";i:202269;s:10:\"size_after\";i:197789;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.86999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1307;s:11:\"size_before\";i:150608;s:10:\"size_after\";i:149301;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1307;s:11:\"size_before\";i:96646;s:10:\"size_after\";i:95339;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1099;s:11:\"size_before\";i:32730;s:10:\"size_after\";i:31631;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(3473,1529,'_wp_attached_file','2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg'),(3474,1529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2066;s:6:\"height\";i:1982;s:4:\"file\";s:40:\"2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-300x288.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"ASH-LeanIMG_0004_2-3000-Crop-1024x982.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:982;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-768x737.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"ASH-LeanIMG_0004_2-3000-Crop-1536x1474.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"ASH-LeanIMG_0004_2-3000-Crop-2048x1965.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1965;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"ASH-LeanIMG_0004_2-3000-Crop-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"ASH-LeanIMG_0004_2-3000-Crop-1080x1036.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1036;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"ASH-LeanIMG_0004_2-3000-Crop-2066x1800.jpg\";s:5:\"width\";i:2066;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"ASH-LeanIMG_0004_2-3000-Crop-1280x1228.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-980x940.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"ASH-LeanIMG_0004_2-3000-Crop-480x460.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1648154200\";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\";}}'),(3415,1518,'_et_pb_side_nav','off'),(3416,1518,'_et_pb_use_builder','on'),(3417,1518,'_et_pb_first_image',''),(3418,1518,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2499\" height=\"1676\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\" alt=\"\" title=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg 2499w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1280x858.jpg 1280w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-980x657.jpg 980w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-480x322.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2499px, 100vw\" class=\"wp-image-1508\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_with_border et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\" data-form_unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\">\n				\n				\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">MAKE A RESERVATION</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://flaphotography.com/divi_overlay/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Full Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Full Name\" pattern=\"[A-Z|a-z|s-]*\" title=\"Only letters allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone # (Optional)</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"not_required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone # (Optional)\" pattern=\"[0-9s-]*\" title=\"Only numbers allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"yourneeds\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_yourneeds_0\" class=\"et_pb_contact_form_label\">Select your needs.</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_yourneeds_0\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"yourneeds\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your needs.</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_0\" class=\"input\" value=\"Corporate Headshots\" data-id=\"-1\">\n							<label for=\"et_pb_contact_yourneeds_3_0\"><i></i>Corporate Headshots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_1\" class=\"input\" value=\"Corporate Shots on Location\" data-id=\"0\">\n							<label for=\"et_pb_contact_yourneeds_3_1\"><i></i>Corporate Shots on Location</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_2\" class=\"input\" value=\"Personal Branding - Lifestyle, Artists, Creators\" data-id=\"1\">\n							<label for=\"et_pb_contact_yourneeds_3_2\"><i></i>Personal Branding - Lifestyle, Artists, Creators</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_3\" class=\"input\" value=\"Personal Branding - On Location\" data-id=\"2\">\n							<label for=\"et_pb_contact_yourneeds_3_3\"><i></i>Personal Branding - On Location</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"backdrop_color\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_backdrop_color_0\" class=\"et_pb_contact_form_label\">Backdrop color?</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_backdrop_color_0\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"backdrop_color\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Backdrop color?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_0\" class=\"input\" value=\"Black\" data-id=\"-1\">\n							<label for=\"et_pb_contact_backdrop_color_4_0\"><i></i>Black</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_1\" class=\"input\" value=\"White\" data-id=\"0\">\n							<label for=\"et_pb_contact_backdrop_color_4_1\"><i></i>White</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_2\" class=\"input\" value=\"Red\" data-id=\"10\">\n							<label for=\"et_pb_contact_backdrop_color_4_2\"><i></i>Red</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_3\" class=\"input\" value=\"Thunder-Grey\" data-id=\"1\">\n							<label for=\"et_pb_contact_backdrop_color_4_3\"><i></i>Thunder-Grey</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_4\" class=\"input\" value=\"Fashion-Grey\" data-id=\"2\">\n							<label for=\"et_pb_contact_backdrop_color_4_4\"><i></i>Fashion-Grey</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_5\" class=\"input\" value=\"Beiige\" data-id=\"5\">\n							<label for=\"et_pb_contact_backdrop_color_4_5\"><i></i>Beiige</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_6\" class=\"input\" value=\"Yellow\" data-id=\"3\">\n							<label for=\"et_pb_contact_backdrop_color_4_6\"><i></i>Yellow</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_7\" class=\"input\" value=\"Blue-Miist\" data-id=\"6\">\n							<label for=\"et_pb_contact_backdrop_color_4_7\"><i></i>Blue-Miist</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_8\" class=\"input\" value=\"Brown-Cocoa\" data-id=\"7\">\n							<label for=\"et_pb_contact_backdrop_color_4_8\"><i></i>Brown-Cocoa</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_9\" class=\"input\" value=\"Brown-Mocha\" data-id=\"8\">\n							<label for=\"et_pb_contact_backdrop_color_4_9\"><i></i>Brown-Mocha</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_10\" class=\"input\" value=\"Pink\" data-id=\"4\">\n							<label for=\"et_pb_contact_backdrop_color_4_10\"><i></i>Pink</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_11\" class=\"input\" value=\"Purple\" data-id=\"9\">\n							<label for=\"et_pb_contact_backdrop_color_4_11\"><i></i>Purple</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;who&quot;,&quot;is&quot;,&quot;A Company, Business&quot;],[&quot;who&quot;,&quot;is&quot;,&quot;Artist. Musician, Speaker&quot;]]\" data-conditional-relation=\"any\" data-id=\"package\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_package_0\" class=\"et_pb_contact_form_label\">Select your package</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your package</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_0\" class=\"input\" value=\"Personalized Package\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_package_0_5_0\"><i></i>Personalized Package</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_1\" class=\"input\" value=\"$210 / 3 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"0\">\n								<label for=\"et_pb_contact_package_0_5_1\"><i></i>$210 / 3 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_2\" class=\"input\" value=\"$349 / 6 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"1\">\n								<label for=\"et_pb_contact_package_0_5_2\"><i></i>$349 / 6 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_3\" class=\"input\" value=\"$449 / 10 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"2\">\n								<label for=\"et_pb_contact_package_0_5_3\"><i></i>$449 / 10 Retouched Photos</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is&quot;,&quot;Personalized Package&quot;]]\" data-conditional-relation=\"any\" data-id=\"offer\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_offer_0\" class=\"et_pb_contact_form_label\">Enter offer provided $</label>\n				<input type=\"text\" id=\"et_pb_contact_offer_0\" class=\"input\" value=\"\" name=\"et_pb_contact_offer_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"offer\" placeholder=\"Enter offer provided $\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_7 et_pb_contact_field_last\" data-id=\"outfit\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_outfit_0\" class=\"et_pb_contact_form_label\">Number of Outfits?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Number of Outfits?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_0\" class=\"input\" value=\"1 Outfit\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_outfit_0_7_0\"><i></i>1 Outfit</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_1\" class=\"input\" value=\"2 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"0\">\n								<label for=\"et_pb_contact_outfit_0_7_1\"><i></i>2 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_2\" class=\"input\" value=\"3 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"1\">\n								<label for=\"et_pb_contact_outfit_0_7_2\"><i></i>3 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_3\" class=\"input\" value=\"4 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"2\">\n								<label for=\"et_pb_contact_outfit_0_7_3\"><i></i>4 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_4\" class=\"input\" value=\"5 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"3\">\n								<label for=\"et_pb_contact_outfit_0_7_4\"><i></i>5 Outfits</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_8 et_pb_contact_field_last\" data-id=\"date-time-picker\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_date-time-picker_0\" class=\"et_pb_contact_form_label\">What date would you like the services?</label>\n				<input type=\"text\" id=\"et_pb_contact_date-time-picker_0\" class=\"input\" value=\"\" name=\"et_pb_contact_date-time-picker_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"date-time-picker\" placeholder=\"What date would you like the services?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message (such as your outfit color, etc.)</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"not_required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message (such as your outfit color, etc.)\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\" data-icon=\"&#x4e;\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"b1834ccab1\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/divi_overlay/\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(3419,1518,'_et_pb_truncate_post_date','2022-07-09 04:00:49'),(3420,1518,'_et_pb_old_content',''),(3421,1518,'_yoast_wpseo_estimated-reading-time-minutes',''),(3422,1518,'_yoast_wpseo_wordproof_timestamp',''),(3053,1396,'_wp_attached_file','2022/07/Young-X-Madness-IMG_0016-2000PX.jpg'),(1887,214,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2299,1230,'_menu_item_type','post_type'),(2300,1230,'_menu_item_menu_item_parent','213'),(2301,1230,'_menu_item_object_id','1188'),(2302,1230,'_menu_item_object','page'),(2303,1230,'_menu_item_target',''),(2304,1230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2305,1230,'_menu_item_xfn',''),(2306,1230,'_menu_item_url',''),(2308,1231,'_menu_item_type','post_type'),(2309,1231,'_menu_item_menu_item_parent','0'),(2310,1231,'_menu_item_object_id','1188'),(2311,1231,'_menu_item_object','page'),(2312,1231,'_menu_item_target',''),(2313,1231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2314,1231,'_menu_item_xfn',''),(2315,1231,'_menu_item_url',''),(2316,1231,'_menu_item_orphaned','1648167824'),(2317,208,'_wp_old_date','2022-03-24'),(2318,213,'_wp_old_date','2022-03-24'),(2319,211,'_wp_old_date','2022-03-24'),(2320,209,'_wp_old_date','2022-03-24'),(2321,359,'_wp_old_date','2022-03-24'),(2322,238,'_wp_old_date','2022-03-24'),(2323,430,'_wp_old_date','2022-03-24'),(4239,1752,'_wp_attached_file','2022/08/MORLON-STANDIMG_1792-1500px.jpg'),(4240,1752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2162;s:4:\"file\";s:39:\"2022/08/MORLON-STANDIMG_1792-1500px.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-208x300.jpg\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"MORLON-STANDIMG_1792-1500px-710x1024.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"MORLON-STANDIMG_1792-1500px-768x1107.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"MORLON-STANDIMG_1792-1500px-1066x1536.jpg\";s:5:\"width\";i:1066;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"MORLON-STANDIMG_1792-1500px-1421x2048.jpg\";s:5:\"width\";i:1421;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"MORLON-STANDIMG_1792-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"MORLON-STANDIMG_1792-1500px-1080x1557.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:41:\"MORLON-STANDIMG_1792-1500px-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"MORLON-STANDIMG_1792-1500px-1280x1845.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1845;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"MORLON-STANDIMG_1792-1500px-980x1413.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"MORLON-STANDIMG_1792-1500px-480x692.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4241,1751,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.88104149696830713622830444364808499813079833984375;s:5:\"bytes\";i:34353;s:11:\"size_before\";i:885149;s:10:\"size_after\";i:850796;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1071;s:11:\"size_before\";i:15340;s:10:\"size_after\";i:14269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4444;s:11:\"size_before\";i:124182;s:10:\"size_after\";i:119738;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:888;s:11:\"size_before\";i:6602;s:10:\"size_after\";i:5714;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.439999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2462;s:11:\"size_before\";i:71651;s:10:\"size_after\";i:69189;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:992;s:11:\"size_before\";i:16655;s:10:\"size_after\";i:15663;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2941;s:11:\"size_before\";i:91336;s:10:\"size_after\";i:88395;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1094;s:11:\"size_before\";i:18971;s:10:\"size_after\";i:17877;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1269;s:11:\"size_before\";i:28877;s:10:\"size_after\";i:27608;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5131;s:11:\"size_before\";i:137158;s:10:\"size_after\";i:132027;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1714;s:11:\"size_before\";i:36251;s:10:\"size_after\";i:34537;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:6939;s:11:\"size_before\";i:192439;s:10:\"size_after\";i:185500;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:4100;s:11:\"size_before\";i:114025;s:10:\"size_after\";i:109925;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1308;s:11:\"size_before\";i:31662;s:10:\"size_after\";i:30354;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(1883,85,'_et_builder_dynamic_assets_loading_attr_threshold','21'),(3051,1395,'_wp_attached_file','2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg'),(3052,1395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1702;s:4:\"file\";s:46:\"2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-2500PX-CP-1024x697.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:697;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-768x523.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Young-X-Madness-IMG_0016-2500PX-CP-1536x1046.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1046;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"Young-X-Madness-IMG_0016-2500PX-CP-2048x1394.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-2500PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-2500PX-CP-1080x735.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Young-X-Madness-IMG_0016-2500PX-CP-1280x871.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-980x667.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"Young-X-Madness-IMG_0016-2500PX-CP-480x327.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2852,1290,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.35071369009663022620060246481443755328655242919921875;s:5:\"bytes\";i:2860;s:11:\"size_before\";i:815480;s:10:\"size_after\";i:812620;s:4:\"time\";d:1.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:585;s:11:\"size_before\";i:8429;s:10:\"size_after\";i:7844;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48296;s:10:\"size_after\";i:48296;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:630;s:11:\"size_before\";i:4618;s:10:\"size_after\";i:3988;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49219;s:10:\"size_after\";i:49219;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:97703;s:10:\"size_after\";i:97703;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:503;s:11:\"size_before\";i:12725;s:10:\"size_after\";i:12222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:55958;s:10:\"size_after\";i:55958;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:485;s:11:\"size_before\";i:13545;s:10:\"size_after\";i:13060;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.439999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:280;s:11:\"size_before\";i:19459;s:10:\"size_after\";i:19179;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88201;s:10:\"size_after\";i:88201;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:305;s:11:\"size_before\";i:18181;s:10:\"size_after\";i:17876;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:180069;s:10:\"size_after\";i:180069;s:4:\"time\";d:0.25;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:120689;s:10:\"size_after\";i:120689;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74567;s:10:\"size_after\";i:74567;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:72;s:11:\"size_before\";i:23821;s:10:\"size_after\";i:23749;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2179,208,'_wp_old_date','2021-12-19'),(2180,213,'_wp_old_date','2021-12-19'),(2181,211,'_wp_old_date','2021-12-19'),(2182,209,'_wp_old_date','2021-12-19'),(2184,359,'_wp_old_date','2021-12-19'),(2185,238,'_wp_old_date','2021-12-19'),(2186,430,'_wp_old_date','2021-12-19'),(2995,1368,'_wp_attached_file','2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg'),(2996,1368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1807;s:4:\"file\";s:48:\"2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-1024x740.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-768x555.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-1536x1110.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-2048x1480.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-1080x781.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:50:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-1280x925.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-980x708.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2-480x347.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(2883,1305,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2342522007528039795776209075484075583517551422119140625;s:5:\"bytes\";i:2462;s:11:\"size_before\";i:1051004;s:10:\"size_after\";i:1048542;s:4:\"time\";d:0.88000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:578;s:11:\"size_before\";i:8708;s:10:\"size_after\";i:8130;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50629;s:10:\"size_after\";i:50629;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:658;s:11:\"size_before\";i:5014;s:10:\"size_after\";i:4356;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:55748;s:10:\"size_after\";i:55748;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101390;s:10:\"size_after\";i:101390;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172255;s:10:\"size_after\";i:172255;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.220000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:396;s:11:\"size_before\";i:12289;s:10:\"size_after\";i:11893;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54414;s:10:\"size_after\";i:54414;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:373;s:11:\"size_before\";i:13457;s:10:\"size_after\";i:13084;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.64000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:125;s:11:\"size_before\";i:19401;s:10:\"size_after\";i:19276;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99619;s:10:\"size_after\";i:99619;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.25;s:5:\"bytes\";i:250;s:11:\"size_before\";i:20019;s:10:\"size_after\";i:19769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191259;s:10:\"size_after\";i:191259;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:135646;s:10:\"size_after\";i:135646;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84218;s:10:\"size_after\";i:84218;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:82;s:11:\"size_before\";i:26938;s:10:\"size_after\";i:26856;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(3788,1592,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.140612429466301591673982329666614532470703125;s:5:\"bytes\";i:89553;s:11:\"size_before\";i:2162796;s:10:\"size_after\";i:2073243;s:4:\"time\";d:0.930000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2024;s:11:\"size_before\";i:32503;s:10:\"size_after\";i:30479;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:12065;s:11:\"size_before\";i:305275;s:10:\"size_after\";i:293210;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1069;s:11:\"size_before\";i:10788;s:10:\"size_after\";i:9719;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7695;s:11:\"size_before\";i:180257;s:10:\"size_after\";i:172562;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2322;s:11:\"size_before\";i:41015;s:10:\"size_after\";i:38693;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9893;s:11:\"size_before\";i:250768;s:10:\"size_after\";i:240875;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2560;s:11:\"size_before\";i:46451;s:10:\"size_after\";i:43891;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:3715;s:11:\"size_before\";i:76519;s:10:\"size_after\";i:72804;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:13201;s:11:\"size_before\";i:335615;s:10:\"size_after\";i:322414;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2892;s:11:\"size_before\";i:70009;s:10:\"size_after\";i:67117;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:16976;s:11:\"size_before\";i:454599;s:10:\"size_after\";i:437623;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:11343;s:11:\"size_before\";i:283497;s:10:\"size_after\";i:272154;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:3798;s:11:\"size_before\";i:75500;s:10:\"size_after\";i:71702;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3054,1396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2415;s:4:\"file\";s:43:\"2022/07/Young-X-Madness-IMG_0016-2000PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Young-X-Madness-IMG_0016-2000PX-1024x966.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:966;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-768x725.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-2000PX-1536x1449.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-2000PX-2048x1932.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1932;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Young-X-Madness-IMG_0016-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-2000PX-1080x1019.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-2000PX-2560x1800.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"Young-X-Madness-IMG_0016-2000PX-1280x1208.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-980x924.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Young-X-Madness-IMG_0016-2000PX-480x453.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3038,1387,'_wp_attached_file','2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg'),(3039,1387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1939;s:4:\"file\";s:54:\"2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-1024x993.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:993;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-768x745.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-1536x1489.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1489;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-1080x1047.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1047;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:56:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-2000x1800.jpg\";s:5:\"width\";i:2000;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:56:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-1280x1241.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-980x950.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:950;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:54:\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER-480x465.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3040,1387,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.29312867700932709880135007551871240139007568359375;s:5:\"bytes\";i:65412;s:11:\"size_before\";i:2852522;s:10:\"size_after\";i:2787110;s:4:\"time\";d:0.9699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2050;s:11:\"size_before\";i:36002;s:10:\"size_after\";i:33952;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:5363;s:11:\"size_before\";i:237840;s:10:\"size_after\";i:232477;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1176;s:11:\"size_before\";i:12165;s:10:\"size_after\";i:10989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4312;s:11:\"size_before\";i:152370;s:10:\"size_after\";i:148058;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6100000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:7312;s:11:\"size_before\";i:453124;s:10:\"size_after\";i:445812;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1683;s:11:\"size_before\";i:35269;s:10:\"size_after\";i:33586;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:4017;s:11:\"size_before\";i:162556;s:10:\"size_after\";i:158539;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1948;s:11:\"size_before\";i:40118;s:10:\"size_after\";i:38170;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2510;s:11:\"size_before\";i:61498;s:10:\"size_after\";i:58988;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:5634;s:11:\"size_before\";i:257438;s:10:\"size_after\";i:251804;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2685;s:11:\"size_before\";i:67726;s:10:\"size_after\";i:65041;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:11898;s:11:\"size_before\";i:701676;s:10:\"size_after\";i:689778;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:6723;s:11:\"size_before\";i:338774;s:10:\"size_after\";i:332051;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5101;s:11:\"size_before\";i:221810;s:10:\"size_after\";i:216709;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3000;s:11:\"size_before\";i:74156;s:10:\"size_after\";i:71156;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3045,1392,'_wp_attached_file','2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg'),(3046,1392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1526;s:4:\"file\";s:38:\"2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"GRACE-IMG_5248-1-2500PX-CP-1024x610.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-768x458.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"GRACE-IMG_5248-1-2500PX-CP-1536x916.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:916;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"GRACE-IMG_5248-1-2500PX-CP-2048x1221.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"GRACE-IMG_5248-1-2500PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:39:\"GRACE-IMG_5248-1-2500PX-CP-1080x644.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:39:\"GRACE-IMG_5248-1-2500PX-CP-1280x763.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:763;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-980x584.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"GRACE-IMG_5248-1-2500PX-CP-480x286.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2261,1206,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1000520447269224177944124676287174224853515625;s:5:\"bytes\";i:15408;s:11:\"size_before\";i:190221;s:10:\"size_after\";i:174813;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1163;s:11:\"size_before\";i:9369;s:10:\"size_after\";i:8206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:904;s:11:\"size_before\";i:4155;s:10:\"size_after\";i:3251;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2607;s:11:\"size_before\";i:39689;s:10:\"size_after\";i:37082;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1263;s:11:\"size_before\";i:13139;s:10:\"size_after\";i:11876;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3148;s:11:\"size_before\";i:52656;s:10:\"size_after\";i:49508;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1325;s:11:\"size_before\";i:13348;s:10:\"size_after\";i:12023;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1626;s:11:\"size_before\";i:19505;s:10:\"size_after\";i:17879;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1745;s:11:\"size_before\";i:19857;s:10:\"size_after\";i:18112;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1627;s:11:\"size_before\";i:18503;s:10:\"size_after\";i:16876;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(2201,1186,'_et_pb_built_for_post_type','page'),(2202,1187,'_et_pb_module_type','et_pb_fullwidth_header'),(2203,1187,'_et_pb_built_for_post_type','page'),(2204,1188,'_edit_last','1'),(2205,1188,'_edit_lock','1648167906:1'),(2206,1188,'_wp_page_template','default'),(2207,1188,'_et_pb_post_hide_nav','default'),(2208,1188,'_et_pb_page_layout','et_right_sidebar'),(2209,1188,'_et_pb_side_nav','off'),(2210,1188,'_et_pb_use_builder','on'),(2211,1188,'_et_pb_first_image',''),(2212,1188,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_12 et_section_regular et_pb_section--with-menu\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_7 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_1 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"88\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" alt=\"\" class=\"wp-image-1463\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu-1\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-1188 menu-item menu-item-type-post_type menu-item-object-page menu-item-1230\"><a href=\"https://flaphotography.com/products-photography/\">PRODUCTS PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_13 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">PRODUCTS PHOTOGRAPHY</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_14 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">SKIN CARE CLIENT</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10 et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_0  et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"8\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1198\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1177\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1204\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1201\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_4\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1203\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_5\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1200\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_6\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1212\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_0_7\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1199\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">APPAREL CLIENT</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_12 et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_gallery et_pb_gallery_1  et_pb_bg_layout_light et_pb_gallery_grid\">\n				<div class=\"et_pb_gallery_items et_post_gallery clearfix\" data-per_page=\"8\"><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_1_0\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1600\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_1_1\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1601\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_1_2\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1602\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div><div class=\"et_pb_gallery_item et_pb_grid_item et_pb_bg_layout_light et_pb_gallery_item_1_3\">\n				<div class=\'et_pb_gallery_image landscape\'>\n					<a href=\"https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg\" title=\"\">\n					<img loading=\"lazy\" width=\"400\" height=\"284\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX-400x284.jpg\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg 479w, https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX-400x284.jpg 480w\" sizes=\"(max-width:479px) 479px, 100vw\" class=\"wp-image-1603\" />\n					<span class=\"et_overlay\"></span>\n				</a>\n				</div></div></div><div class=\"et_pb_gallery_pagination\"></div></div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_16 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_11_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_11 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_12_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_12 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_13_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_13 et_pb_bg_layout_light\" href=\"https://flaphotography.com/products-photography\" data-icon=\"&#x45;\">Products Photography</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_14_wrapper  et_pb_module \">\n				<a id=\"overlay_unique_id_1483\" class=\"et_pb_button et_pb_button_14 et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">PersonalIzed Offer</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_15_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_15 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_16_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_16 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_17_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_17 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_1 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_2 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_3 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/kcj_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_2 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(2213,1188,'_et_pb_truncate_post_date','2022-08-21 10:43:04'),(2214,1188,'_et_pb_old_content',''),(2215,1188,'_yoast_wpseo_estimated-reading-time-minutes',''),(2216,1188,'_et_pb_built_for_post_type','page'),(2217,1188,'_et_pb_ab_subjects',''),(2218,1188,'_et_pb_enable_shortcode_tracking',''),(2219,1188,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1188\" /]'),(2220,1188,'_et_pb_custom_css',''),(2221,1188,'_et_pb_gutter_width','3'),(2225,1188,'_yoast_wpseo_content_score','60'),(2223,1188,'_global_colors_info','{}'),(2224,1188,'_et_builder_version','VB|Divi|4.17.6'),(2227,1188,'_thumbnail_id','0'),(2228,1188,'_et_pb_show_page_creation','off'),(2229,1193,'_et_pb_module_type','et_pb_fullwidth_header'),(2230,1193,'_et_pb_built_for_post_type','page'),(3689,1575,'_wp_attached_file','2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg'),(3690,1575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2143;s:6:\"height\";i:2560;s:4:\"file\";s:47:\"2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Q-BLACK-IMG_4144-1500PX-WIDE-857x1024.jpg\";s:5:\"width\";i:857;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-768x917.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Q-BLACK-IMG_4144-1500PX-WIDE-1286x1536.jpg\";s:5:\"width\";i:1286;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"Q-BLACK-IMG_4144-1500PX-WIDE-1715x2048.jpg\";s:5:\"width\";i:1715;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"Q-BLACK-IMG_4144-1500PX-WIDE-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"Q-BLACK-IMG_4144-1500PX-WIDE-1080x1290.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"Q-BLACK-IMG_4144-1500PX-WIDE-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"Q-BLACK-IMG_4144-1500PX-WIDE-1280x1529.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"Q-BLACK-IMG_4144-1500PX-WIDE-980x1171.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"Q-BLACK-IMG_4144-1500PX-WIDE-480x573.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:32:\"Q-BLACK-IMG_4144-1500PX-WIDE.jpg\";}'),(3786,1592,'_wp_attached_file','2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg'),(3787,1592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1244;s:4:\"file\";s:42:\"2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-300x249.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-ARC-IMG_0865-1500PX3-1024x849.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:849;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-768x637.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-ARC-IMG_0865-1500PX3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-ARC-IMG_0865-1500PX3-1080x896.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-ARC-IMG_0865-1500PX3-1280x1062.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1062;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-980x813.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"MARVELOUS-ARC-IMG_0865-1500PX3-480x398.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4196,1748,'_wp_attached_file','2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg'),(4197,1748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1991;s:4:\"file\";s:46:\"2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-771x1024.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-768x1019.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-1157x1536.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-1080x1434.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-1280x1699.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-980x1301.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"IDRAS-Pocket-Pose-IMG_1476-1500px4-480x637.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4198,1748,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.70017860378432950074767404657904990017414093017578125;s:5:\"bytes\";i:6492;s:11:\"size_before\";i:927192;s:10:\"size_after\";i:920700;s:4:\"time\";d:0.89000000000000023536728122053318656980991363525390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:666;s:11:\"size_before\";i:9532;s:10:\"size_after\";i:8866;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2099999999999999922284388276239042170345783233642578125;s:5:\"bytes\";i:121;s:11:\"size_before\";i:56652;s:10:\"size_after\";i:56531;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:694;s:11:\"size_before\";i:5001;s:10:\"size_after\";i:4307;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.200000000000000011102230246251565404236316680908203125;s:5:\"bytes\";i:110;s:11:\"size_before\";i:56228;s:10:\"size_after\";i:56118;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114908;s:10:\"size_after\";i:114908;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:702;s:11:\"size_before\";i:13452;s:10:\"size_after\";i:12750;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5;s:5:\"bytes\";i:313;s:11:\"size_before\";i:62454;s:10:\"size_after\";i:62141;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:757;s:11:\"size_before\";i:14556;s:10:\"size_after\";i:13799;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:704;s:11:\"size_before\";i:21203;s:10:\"size_after\";i:20499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101484;s:10:\"size_after\";i:101484;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:649;s:11:\"size_before\";i:20455;s:10:\"size_after\";i:19806;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:1182;s:11:\"size_before\";i:200401;s:10:\"size_after\";i:199219;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:138490;s:10:\"size_after\";i:138490;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:85256;s:10:\"size_after\";i:85256;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:594;s:11:\"size_before\";i:27120;s:10:\"size_after\";i:26526;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(3177,1137,'_yoast_wpseo_wordproof_timestamp',''),(3479,1531,'_wp_attached_file','2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg'),(3480,1531,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:44:\"2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"ASH-LeanIMG_0004_2-3000px-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"ASH-LeanIMG_0004_2-3000px-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"ASH-LeanIMG_0004_2-3000px-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"ASH-LeanIMG_0004_2-3000px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"ASH-LeanIMG_0004_2-3000px-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"ASH-LeanIMG_0004_2-3000px-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"ASH-LeanIMG_0004_2-3000px-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"ASH-LeanIMG_0004_2-3000px-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:14:\"original_image\";s:29:\"ASH-LeanIMG_0004_2-3000px.jpg\";}'),(3481,1531,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.085708113538242258755417424254119396209716796875;s:5:\"bytes\";i:189551;s:11:\"size_before\";i:1879402;s:10:\"size_after\";i:1689851;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7600;s:11:\"size_before\";i:16864;s:10:\"size_after\";i:9264;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10086;s:11:\"size_before\";i:79917;s:10:\"size_after\";i:69831;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:56.5;s:5:\"bytes\";i:7389;s:11:\"size_before\";i:13078;s:10:\"size_after\";i:5689;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:8880;s:11:\"size_before\";i:51083;s:10:\"size_after\";i:42203;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:13163;s:11:\"size_before\";i:154480;s:10:\"size_after\";i:141317;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16972;s:11:\"size_before\";i:254457;s:10:\"size_after\";i:237485;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:7751;s:11:\"size_before\";i:21892;s:10:\"size_after\";i:14141;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.25;s:5:\"bytes\";i:10147;s:11:\"size_before\";i:82810;s:10:\"size_after\";i:72663;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.75999999999999801048033987171947956085205078125;s:5:\"bytes\";i:7850;s:11:\"size_before\";i:23965;s:10:\"size_after\";i:16115;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8185;s:11:\"size_before\";i:33977;s:10:\"size_after\";i:25792;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10349;s:11:\"size_before\";i:86331;s:10:\"size_after\";i:75982;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.75;s:5:\"bytes\";i:8196;s:11:\"size_before\";i:39493;s:10:\"size_after\";i:31297;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:22467;s:11:\"size_before\";i:431524;s:10:\"size_after\";i:409057;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11509;s:11:\"size_before\";i:114234;s:10:\"size_after\";i:102725;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9818;s:11:\"size_before\";i:74318;s:10:\"size_after\";i:64500;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";i:29;s:5:\"bytes\";i:7954;s:11:\"size_before\";i:27423;s:10:\"size_after\";i:19469;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:21235;s:11:\"size_before\";i:373556;s:10:\"size_after\";i:352321;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(3413,1518,'_et_pb_post_hide_nav','default'),(3414,1518,'_et_pb_page_layout','et_right_sidebar'),(3372,1518,'_edit_last','1'),(3373,1518,'_edit_lock','1656815660:1'),(3374,1518,'et_pb_divioverlay_effect_entrance','backInUp'),(3375,1518,'et_pb_divioverlay_effect_exit','backOutDown'),(3376,1518,'dov_effect_entrance_speed','1'),(3377,1518,'dov_effect_exit_speed','1'),(3378,1518,'post_overlay_bg_color','rgba(255,255,255,0.01)'),(3379,1518,'do_enablebgblur','1'),(3380,1518,'post_do_preventscroll','0'),(3381,1518,'do_at_pages','all'),(3382,1518,'do_at_pages_selected',''),(3383,1518,'do_at_pagesexception_selected',''),(3384,1518,'category_at_categories','all'),(3385,1518,'category_at_categories_selected',''),(3386,1518,'category_at_exceptioncategories_selected',''),(3387,1518,'tag_at_tags','all'),(3388,1518,'tag_at_tags_selected',''),(3389,1518,'tag_at_exceptiontags_selected',''),(3390,1518,'do_displaylocations_archive','0'),(3391,1518,'do_displaylocations_author','0'),(3392,1518,'do_forcerender','0'),(3393,1518,'post_css_selector',''),(3394,1518,'css_selector_at_pages_selected',''),(3395,1518,'post_enableurltrigger','0'),(3396,1518,'do_enableajax','0'),(3397,1518,'do_showguests','0'),(3398,1518,'do_showusers','0'),(3399,1518,'overlay_automatictrigger','0'),(3400,1518,'overlay_automatictrigger_onceperload','0'),(3401,1518,'overlay_automatictrigger_disablemobile','0'),(3347,1508,'_wp_attached_file','2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg'),(3348,1508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2499;s:6:\"height\";i:1676;s:4:\"file\";s:51:\"2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1536x1030.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1030;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-2048x1374.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:52:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1080x724.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:52:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1280x858.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-980x657.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-480x322.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1656784312\";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\";}}'),(3349,1508,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.79755903896080582171634887345135211944580078125;s:5:\"bytes\";i:367618;s:11:\"size_before\";i:1120870;s:10:\"size_after\";i:753252;s:4:\"time\";d:0.9200000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:79.849999999999994315658113919198513031005859375;s:5:\"bytes\";i:21901;s:11:\"size_before\";i:27429;s:10:\"size_after\";i:5528;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:24683;s:11:\"size_before\";i:76586;s:10:\"size_after\";i:51903;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:87.06999999999999317878973670303821563720703125;s:5:\"bytes\";i:21835;s:11:\"size_before\";i:25078;s:10:\"size_after\";i:3243;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:23388;s:11:\"size_before\";i:53025;s:10:\"size_after\";i:29637;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:28451;s:11:\"size_before\";i:149528;s:10:\"size_after\";i:121077;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:34685;s:11:\"size_before\";i:259641;s:10:\"size_after\";i:224956;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.1200000000000045474735088646411895751953125;s:5:\"bytes\";i:22100;s:11:\"size_before\";i:30645;s:10:\"size_after\";i:8545;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:24688;s:11:\"size_before\";i:78769;s:10:\"size_after\";i:54081;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:22168;s:11:\"size_before\";i:31873;s:10:\"size_after\";i:9705;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:22664;s:11:\"size_before\";i:38768;s:10:\"size_after\";i:16104;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:25063;s:11:\"size_before\";i:83505;s:10:\"size_after\";i:58442;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:23058;s:11:\"size_before\";i:49975;s:10:\"size_after\";i:26917;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:26226;s:11:\"size_before\";i:109089;s:10:\"size_after\";i:82863;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.75;s:5:\"bytes\";i:24403;s:11:\"size_before\";i:72306;s:10:\"size_after\";i:47903;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:64.3700000000000045474735088646411895751953125;s:5:\"bytes\";i:22305;s:11:\"size_before\";i:34653;s:10:\"size_after\";i:12348;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3782,1585,'_wp_attached_file','2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg'),(3783,1585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2103;s:4:\"file\";s:43:\"2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Marvelous-Seat-IMG_0735-1500PX2-730x1024.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Marvelous-Seat-IMG_0735-1500PX2-768x1077.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1077;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Marvelous-Seat-IMG_0735-1500PX2-1096x1536.jpg\";s:5:\"width\";i:1096;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Marvelous-Seat-IMG_0735-1500PX2-1461x2048.jpg\";s:5:\"width\";i:1461;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"Marvelous-Seat-IMG_0735-1500PX2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"Marvelous-Seat-IMG_0735-1500PX2-1080x1514.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:45:\"Marvelous-Seat-IMG_0735-1500PX2-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"Marvelous-Seat-IMG_0735-1500PX2-1280x1795.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1795;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"Marvelous-Seat-IMG_0735-1500PX2-980x1374.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"Marvelous-Seat-IMG_0735-1500PX2-480x673.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4092,1710,'_wp_attached_file','2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg'),(4093,1710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1960;s:4:\"file\";s:50:\"2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-784x1024.jpg\";s:5:\"width\";i:784;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-1176x1536.jpg\";s:5:\"width\";i:1176;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:52:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-1080x1411.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:52:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:52:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-1280x1673.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:51:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-980x1281.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:50:\"Francine-Face-Up-Cocoa-IMG_1577-1500px-480x627.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3915,1649,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.76654296033665758614006335847079753875732421875;s:5:\"bytes\";i:387738;s:11:\"size_before\";i:1448592;s:10:\"size_after\";i:1060854;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:78.0400000000000062527760746888816356658935546875;s:5:\"bytes\";i:22456;s:11:\"size_before\";i:28774;s:10:\"size_after\";i:6318;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:22940;s:11:\"size_before\";i:64702;s:10:\"size_after\";i:41762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:86.9899999999999948840923025272786617279052734375;s:5:\"bytes\";i:22451;s:11:\"size_before\";i:25809;s:10:\"size_after\";i:3358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.75;s:5:\"bytes\";i:22964;s:11:\"size_before\";i:66084;s:10:\"size_after\";i:43120;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:24922;s:11:\"size_before\";i:116931;s:10:\"size_after\";i:92009;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:29200;s:11:\"size_before\";i:206656;s:10:\"size_after\";i:177456;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:22364;s:11:\"size_before\";i:32086;s:10:\"size_after\";i:9722;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:23065;s:11:\"size_before\";i:75667;s:10:\"size_after\";i:52602;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:67.9599999999999937472239253111183643341064453125;s:5:\"bytes\";i:22380;s:11:\"size_before\";i:32933;s:10:\"size_after\";i:10553;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:22430;s:11:\"size_before\";i:38308;s:10:\"size_after\";i:15878;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:24502;s:11:\"size_before\";i:107995;s:10:\"size_after\";i:83493;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:60.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:22502;s:11:\"size_before\";i:37318;s:10:\"size_after\";i:14816;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:32838;s:11:\"size_before\";i:333196;s:10:\"size_after\";i:300358;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:26166;s:11:\"size_before\";i:147266;s:10:\"size_after\";i:121100;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:23971;s:11:\"size_before\";i:92450;s:10:\"size_after\";i:68479;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:53.25;s:5:\"bytes\";i:22587;s:11:\"size_before\";i:42417;s:10:\"size_after\";i:19830;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3916,1646,'_et_pb_built_for_post_type','page'),(3917,1646,'_et_pb_ab_subjects',''),(3918,1646,'_et_pb_enable_shortcode_tracking',''),(3919,1646,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1646\" /]'),(3920,1646,'_et_pb_custom_css',''),(3921,1646,'_et_pb_gutter_width','3'),(3929,1646,'_wp_page_template','default'),(3923,1646,'_global_colors_info','{}'),(3924,1646,'_et_pb_first_image',''),(3925,1646,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_1 et_section_regular et_pb_section--with-menu\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0 et_pb_row--with-menu\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column--with-menu\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_menu et_pb_menu_0 et_pb_bg_layout_light  et_pb_text_align_left et_dropdown_animation_fade et_pb_menu--with-logo et_pb_menu--style-centered\">\n					\n					\n					\n					\n					<div class=\"et_pb_menu_inner_container clearfix\">\n						<div class=\"et_pb_menu__logo-wrap\">\n			  <div class=\"et_pb_menu__logo\">\n				<a href=\"https://flaphotography.com/\" ><img loading=\"lazy\" width=\"300\" height=\"88\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" alt=\"\" class=\"wp-image-1463\" /></a>\n			  </div>\n			</div>\n						<div class=\"et_pb_menu__wrap\">\n							<div class=\"et_pb_menu__menu\">\n								<nav class=\"et-menu-nav\"><ul id=\"menu-top-menu\" class=\"et-menu nav\"><li class=\"et_pb_menu_page_id-home menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-208\"><a href=\"https://flaphotography.com/\">HOME</a></li>\n<li class=\"et_pb_menu_page_id-213 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-213\"><a href=\"#\">PHOTOGRAPHY</a>\n<ul class=\"sub-menu\">\n	<li class=\"et_pb_menu_page_id-9 menu-item menu-item-type-post_type menu-item-object-page menu-item-211\"><a href=\"https://flaphotography.com/corporate/\">CORPORATE PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-61 menu-item menu-item-type-post_type menu-item-object-page menu-item-209\"><a href=\"https://flaphotography.com/fashion-modeling-sessions/\">FASHION &#038; MODELING SESSIONS</a></li>\n	<li class=\"et_pb_menu_page_id-1188 menu-item menu-item-type-post_type menu-item-object-page menu-item-1230\"><a href=\"https://flaphotography.com/products-photography/\">PRODUCTS PHOTOGRAPHY</a></li>\n	<li class=\"et_pb_menu_page_id-98 menu-item menu-item-type-post_type menu-item-object-page menu-item-359\"><a href=\"https://flaphotography.com/post-production/\">POST PRODUCTION</a></li>\n</ul>\n</li>\n<li class=\"et_pb_menu_page_id-238 menu-item menu-item-type-custom menu-item-object-custom menu-item-238\"><a href=\"http://flapstart.com/\">GRAPHIC DESIGN</a></li>\n<li class=\"et_pb_menu_page_id-214 menu-item menu-item-type-post_type menu-item-object-page menu-item-430\"><a href=\"https://flaphotography.com/about/\">ABOUT</a></li>\n</ul></nav>\n							</div>\n							\n							\n							<div class=\"et_mobile_nav_menu\">\n				<div class=\"mobile_nav closed\">\n					<span class=\"mobile_menu_bar\"></span>\n				</div>\n			</div>\n						</div>\n						\n					</div>\n				</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;</div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x24;\">CORPORATE</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;</div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x24;\">FASHION</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_2 et_clickable  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;<br />\n&nbsp;</div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://flaphotography.com/couples-family-sessions/\" data-icon=\"&#x24;\">COUPLES</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_2 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">BIG 20% OFF &#8211; ENDS DEC 30</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_0 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_5 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<section class=\"et_pb_with_border et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_pb_text_align_center et_pb_bg_layout_dark\">\n				\n				\n				\n				\n				<div class=\"et_pb_fullwidth_header_container center\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">POST PRODUCTION SERVICES </h1>\n						\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_6 et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img loading=\"lazy\" width=\"2560\" height=\"1600\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" alt=\"\" title=\"After - changed color of outfit and background\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-2880x1800.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-1280x800.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-980x613.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-480x300.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-144\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_7   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_0\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_0\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img loading=\"lazy\" width=\"2560\" height=\"1636\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" alt=\"\" title=\"\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-1280x818.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-980x626.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1-480x307.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-93\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_1 et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_2 et_animated et-waypoint\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img loading=\"lazy\" width=\"2560\" height=\"1707\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" alt=\"\" title=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg 2560w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-1280x854.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-980x653.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1-480x320.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw\" class=\"wp-image-108\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row_inner et_pb_row_inner_1 et_animated\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_2\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_3 et_animated et-waypoint\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img loading=\"lazy\" width=\"1536\" height=\"1025\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" alt=\"\" title=\"Woman-sitting-in-the-restaurant\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg 1536w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-1280x854.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-980x654.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1-480x320.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1536px, 100vw\" class=\"wp-image-152\" /></span>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_3 et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_4 et_animated et-waypoint\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img loading=\"lazy\" width=\"1536\" height=\"1536\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" alt=\"\" title=\"After -  color of BG, Lips, finger nails color changed\" srcset=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1536x1536.jpg 1536w, https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-1280x1280.jpg 1280w, https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-980x980.jpg 980w, https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1-480x480.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1536px, 100vw\" class=\"wp-image-136\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n			</div>\n				</div>\n				\n			</div><div class=\"et_pb_section et_pb_section_7 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"230\" height=\"81\" src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" alt=\"\" title=\"LOGO-FLAPSTART-ORG-230px\" class=\"wp-image-22\" /></span>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x24;\">VIEW MORE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_section et_pb_section_9 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Services</p></div>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://flaphotography.com/corporate\" data-icon=\"&#x45;\">Corporate Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_5_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_5 et_pb_bg_layout_light\" href=\"https://flaphotography.com/fashion-modeling-sessions/\" data-icon=\"&#x45;\">Fashion / Modeling Sessions</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_6_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_6 et_pb_bg_layout_light\" href=\"https://flaphotography.com/products-photography\" data-icon=\"&#x45;\">Products Photography</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_7_wrapper  et_pb_module \">\n				<a id=\"overlay_unique_id_1483\" class=\"et_pb_button et_pb_button_7 et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">PersonalIzed Offer</a>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_8_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_8 et_pb_bg_layout_light\" href=\"https://flaphotography.com/post-production\" data-icon=\"&#x45;\">Post Production</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_9_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_9 et_pb_bg_layout_light\" href=\"https://flapstart.com\" data-icon=\"&#x45;\">Web &amp; Graphic Design</a>\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_10_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_10 et_pb_bg_layout_light\" href=\"https://flaphotography.com/about\" data-icon=\"&#x45;\">About</a>\n			</div><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_0 clearfix  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_0 et_pb_social_icon et_pb_social_network_link  et-social-facebook\'><a\n              href=\'https://www.facebook.com/FlapStart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_1 et_pb_social_icon et_pb_social_network_link  et-social-instagram\'><a\n              href=\'https://www.instagram.com/kcj_flapstart\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_1 video-autoplay\">\n				\n				\n				\n				\n				<div class=\"et_pb_video_box\">\n				<video controls>\n					<source type=\"video/mp4\" src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" />\n					\n				</video></div>\n				\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div><div class=\"et_pb_section et_pb_section_10 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Copyright © 2021 &#8211; Flap Photography &#8211; All Rights Reserved</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div></p>\n'),(3926,1646,'_et_pb_truncate_post_date','2022-08-21 10:43:04'),(3927,1646,'_et_builder_version','VB|Divi|4.17.6'),(3928,1646,'_et_pb_show_page_creation','off'),(3930,1646,'_et_pb_post_hide_nav','default'),(3931,1646,'_et_pb_page_layout','et_right_sidebar'),(3932,1646,'_et_pb_side_nav','off'),(3933,1646,'_et_pb_old_content',''),(3934,1646,'_yoast_wpseo_content_score','90'),(3935,1646,'_yoast_wpseo_estimated-reading-time-minutes','0'),(3936,1646,'_yoast_wpseo_wordproof_timestamp',''),(3971,1659,'_et_pb_excluded_global_options','[]'),(4034,1696,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.638181172601101298624826085870154201984405517578125;s:5:\"bytes\";i:33881;s:11:\"size_before\";i:1284256;s:10:\"size_after\";i:1250375;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:832;s:11:\"size_before\";i:9287;s:10:\"size_after\";i:8455;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1846;s:11:\"size_before\";i:57825;s:10:\"size_after\";i:55979;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:755;s:11:\"size_before\";i:5165;s:10:\"size_after\";i:4410;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:2109;s:11:\"size_before\";i:74722;s:10:\"size_after\";i:72613;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:1980;s:11:\"size_before\";i:113216;s:10:\"size_after\";i:111236;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1599999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:2216;s:11:\"size_before\";i:190613;s:10:\"size_after\";i:188397;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1242;s:11:\"size_before\";i:13894;s:10:\"size_after\";i:12652;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2541;s:11:\"size_before\";i:65663;s:10:\"size_after\";i:63122;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1325;s:11:\"size_before\";i:15633;s:10:\"size_after\";i:14308;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:23572;s:10:\"size_after\";i:21798;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1983;s:11:\"size_before\";i:133465;s:10:\"size_after\";i:131482;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1430;s:11:\"size_before\";i:24182;s:10:\"size_after\";i:22752;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7947;s:11:\"size_before\";i:226677;s:10:\"size_after\";i:218730;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2317;s:11:\"size_before\";i:181958;s:10:\"size_after\";i:179641;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2023;s:11:\"size_before\";i:112807;s:10:\"size_after\";i:110784;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1561;s:11:\"size_before\";i:35577;s:10:\"size_after\";i:34016;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3431,1518,'_et_pb_custom_css',''),(3432,1518,'_et_pb_gutter_width','3'),(3433,1518,'_thumbnail_id','0'),(3434,1518,'_global_colors_info','{}'),(3435,1518,'_et_builder_version','VB|Divi|4.17.4'),(3436,1518,'_et_pb_show_page_creation','off'),(3777,1583,'_wp_attached_file','2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg'),(3778,1583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1178;s:4:\"file\";s:43:\"2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-SMILE-IMG_0854-1500PX-1024x804.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-768x603.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-SMILE-IMG_0854-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-SMILE-IMG_0854-1500PX-1080x848.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:45:\"MARVELOUS-SMILE-IMG_0854-1500PX-1280x1005.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-980x770.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:43:\"MARVELOUS-SMILE-IMG_0854-1500PX-480x377.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3779,1584,'_wp_attached_file','2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg'),(3780,1584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1195;s:4:\"file\";s:44:\"2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"MARVELOUS-GARDEN-IMG_0821-1500PX-1024x816.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-768x612.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"MARVELOUS-GARDEN-IMG_0821-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"MARVELOUS-GARDEN-IMG_0821-1500PX-1080x860.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"MARVELOUS-GARDEN-IMG_0821-1500PX-1280x1020.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-980x781.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"MARVELOUS-GARDEN-IMG_0821-1500PX-480x382.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3781,1583,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.81410006904504683689083321951329708099365234375;s:5:\"bytes\";i:106120;s:11:\"size_before\";i:2204358;s:10:\"size_after\";i:2098238;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2319;s:11:\"size_before\";i:33647;s:10:\"size_after\";i:31328;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13939;s:11:\"size_before\";i:304134;s:10:\"size_after\";i:290195;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:11695;s:10:\"size_after\";i:10491;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:9229;s:11:\"size_before\";i:182714;s:10:\"size_after\";i:173485;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2978;s:11:\"size_before\";i:46004;s:10:\"size_after\";i:43026;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:12275;s:11:\"size_before\";i:270367;s:10:\"size_after\";i:258092;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3341;s:11:\"size_before\";i:51534;s:10:\"size_after\";i:48193;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:4933;s:11:\"size_before\";i:83829;s:10:\"size_after\";i:78896;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15113;s:11:\"size_before\";i:333071;s:10:\"size_after\";i:317958;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4190;s:11:\"size_before\";i:78322;s:10:\"size_after\";i:74132;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:18894;s:11:\"size_before\";i:447810;s:10:\"size_after\";i:428916;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13180;s:11:\"size_before\";i:283223;s:10:\"size_after\";i:270043;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:4525;s:11:\"size_before\";i:78008;s:10:\"size_after\";i:73483;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3238,1483,'_edit_last','1'),(3239,1483,'_edit_lock','1663280616:1'),(3240,1483,'et_pb_divioverlay_effect_entrance','backInUp'),(3241,1483,'et_pb_divioverlay_effect_exit','backOutDown'),(3242,1483,'dov_effect_entrance_speed','1'),(3243,1483,'dov_effect_exit_speed','1'),(3244,1483,'post_overlay_bg_color','rgba(255,255,255,0.01)'),(3245,1483,'do_enablebgblur','1'),(3246,1483,'post_do_preventscroll','0'),(3247,1483,'do_at_pages','all'),(3248,1483,'do_at_pages_selected',''),(3249,1483,'do_at_pagesexception_selected',''),(3250,1483,'category_at_categories','all'),(3251,1483,'category_at_categories_selected',''),(3252,1483,'category_at_exceptioncategories_selected',''),(3253,1483,'tag_at_tags','all'),(3254,1483,'tag_at_tags_selected',''),(3255,1483,'tag_at_exceptiontags_selected',''),(3256,1483,'do_displaylocations_archive','0'),(3257,1483,'do_displaylocations_author','0'),(3258,1483,'do_forcerender','0'),(3259,1483,'post_css_selector',''),(3260,1483,'css_selector_at_pages_selected',''),(3261,1483,'post_enableurltrigger','0'),(3262,1483,'do_enableajax','0'),(3263,1483,'do_showguests','0'),(3264,1483,'do_showusers','0'),(3265,1483,'overlay_automatictrigger','0'),(3266,1483,'overlay_automatictrigger_onceperload','0'),(3267,1483,'overlay_automatictrigger_disablemobile','0'),(3268,1483,'overlay_automatictrigger_disabletablet','0'),(3269,1483,'overlay_automatictrigger_disabledesktop','0'),(3270,1483,'dov_closebtn_cookie','0'),(3271,1483,'post_do_hideclosebtn','0'),(3272,1483,'post_do_customizeclosebtn','1'),(3273,1483,'post_doclosebtn_text_color','#000000'),(3274,1483,'post_doclosebtn_bg_color','#ffffff'),(3275,1483,'post_doclosebtn_fontsize','85'),(3276,1483,'post_doclosebtn_borderradius',''),(3277,1483,'post_doclosebtn_padding','16'),(3278,1483,'do_enable_scheduling','0'),(3279,1483,'_et_pb_post_hide_nav','default'),(3280,1483,'_et_pb_page_layout','et_no_sidebar'),(3281,1483,'_et_pb_side_nav','off'),(3282,1483,'_et_pb_use_builder','on'),(3283,1483,'_et_pb_first_image',''),(3284,1483,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				\n				\n				<span class=\"et_pb_image_wrap \"><img loading=\"lazy\" width=\"2499\" height=\"1676\" src=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\" alt=\"\" title=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" srcset=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg 2499w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-1280x858.jpg 1280w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-980x657.jpg 980w, https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1-480x322.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2499px, 100vw\" class=\"wp-image-1508\" /></span>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_with_border et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_with_border et_pb_module et_pb_contact_form_0 cu-form et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\" data-form_unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\">\n				\n				\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">MAKE A RESERVATION</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://flaphotography.com/divi_overlay/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Full Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Full Name\" pattern=\"[A-Z|a-z|s-]*\" title=\"Only letters allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone # (Optional)</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"not_required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone # (Optional)\" pattern=\"[0-9s-]*\" title=\"Only numbers allowed.\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"yourneeds\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_yourneeds_0\" class=\"et_pb_contact_form_label\">Select your needs.</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_yourneeds_0\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"yourneeds\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your needs.</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_0\" class=\"input\" value=\"Corporate Headshots\" data-id=\"-1\">\n							<label for=\"et_pb_contact_yourneeds_3_0\"><i></i>Corporate Headshots</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_1\" class=\"input\" value=\"Corporate Shots on Location\" data-id=\"0\">\n							<label for=\"et_pb_contact_yourneeds_3_1\"><i></i>Corporate Shots on Location</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_2\" class=\"input\" value=\"Personal Branding - Lifestyle, Artists, Creators\" data-id=\"1\">\n							<label for=\"et_pb_contact_yourneeds_3_2\"><i></i>Personal Branding - Lifestyle, Artists, Creators</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_yourneeds_3_3\" class=\"input\" value=\"Personal Branding - On Location\" data-id=\"2\">\n							<label for=\"et_pb_contact_yourneeds_3_3\"><i></i>Personal Branding - On Location</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"backdrop_color\" data-type=\"checkbox\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_backdrop_color_0\" class=\"et_pb_contact_form_label\">Backdrop color?</label>\n				<input class=\"et_pb_checkbox_handle\" type=\"hidden\" name=\"et_pb_contact_backdrop_color_0\" data-required_mark=\"required\" data-field_type=\"checkbox\" data-original_id=\"backdrop_color\">\n					<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Backdrop color?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_0\" class=\"input\" value=\"Black\" data-id=\"-1\">\n							<label for=\"et_pb_contact_backdrop_color_4_0\"><i></i>Black</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_1\" class=\"input\" value=\"White\" data-id=\"0\">\n							<label for=\"et_pb_contact_backdrop_color_4_1\"><i></i>White</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_2\" class=\"input\" value=\"Red\" data-id=\"10\">\n							<label for=\"et_pb_contact_backdrop_color_4_2\"><i></i>Red</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_3\" class=\"input\" value=\"Thunder-Grey\" data-id=\"1\">\n							<label for=\"et_pb_contact_backdrop_color_4_3\"><i></i>Thunder-Grey</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_4\" class=\"input\" value=\"Fashion-Grey\" data-id=\"2\">\n							<label for=\"et_pb_contact_backdrop_color_4_4\"><i></i>Fashion-Grey</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_5\" class=\"input\" value=\"Beiige\" data-id=\"5\">\n							<label for=\"et_pb_contact_backdrop_color_4_5\"><i></i>Beiige</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_6\" class=\"input\" value=\"Yellow\" data-id=\"3\">\n							<label for=\"et_pb_contact_backdrop_color_4_6\"><i></i>Yellow</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_7\" class=\"input\" value=\"Blue-Miist\" data-id=\"6\">\n							<label for=\"et_pb_contact_backdrop_color_4_7\"><i></i>Blue-Miist</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_8\" class=\"input\" value=\"Brown-Cocoa\" data-id=\"7\">\n							<label for=\"et_pb_contact_backdrop_color_4_8\"><i></i>Brown-Cocoa</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_9\" class=\"input\" value=\"Brown-Mocha\" data-id=\"8\">\n							<label for=\"et_pb_contact_backdrop_color_4_9\"><i></i>Brown-Mocha</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_10\" class=\"input\" value=\"Pink\" data-id=\"4\">\n							<label for=\"et_pb_contact_backdrop_color_4_10\"><i></i>Pink</label>\n						</span><span class=\"et_pb_contact_field_checkbox\">\n							<input type=\"checkbox\" id=\"et_pb_contact_backdrop_color_4_11\" class=\"input\" value=\"Purple\" data-id=\"9\">\n							<label for=\"et_pb_contact_backdrop_color_4_11\"><i></i>Purple</label>\n						</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;who&quot;,&quot;is&quot;,&quot;A Company, Business&quot;],[&quot;who&quot;,&quot;is&quot;,&quot;Artist. Musician, Speaker&quot;]]\" data-conditional-relation=\"any\" data-id=\"package\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_package_0\" class=\"et_pb_contact_form_label\">Select your package</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Select your package</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_0\" class=\"input\" value=\"Personalized Package\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_package_0_5_0\"><i></i>Personalized Package</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_1\" class=\"input\" value=\"$210 / 3 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"0\">\n								<label for=\"et_pb_contact_package_0_5_1\"><i></i>$210 / 3 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_2\" class=\"input\" value=\"$349 / 6 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"1\">\n								<label for=\"et_pb_contact_package_0_5_2\"><i></i>$349 / 6 Retouched Photos</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_package_0_5_3\" class=\"input\" value=\"$449 / 10 Retouched Photos\" name=\"et_pb_contact_package_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"package\"  data-id=\"2\">\n								<label for=\"et_pb_contact_package_0_5_3\"><i></i>$449 / 10 Retouched Photos</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;package&quot;,&quot;is&quot;,&quot;Personalized Package&quot;]]\" data-conditional-relation=\"any\" data-id=\"offer\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_offer_0\" class=\"et_pb_contact_form_label\">Enter offer provided $</label>\n				<input type=\"text\" id=\"et_pb_contact_offer_0\" class=\"input\" value=\"\" name=\"et_pb_contact_offer_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"offer\" placeholder=\"Enter offer provided $\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_7 et_pb_contact_field_last\" data-id=\"outfit\" data-type=\"radio\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_outfit_0\" class=\"et_pb_contact_form_label\">Number of Outfits?</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Number of Outfits?</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_0\" class=\"input\" value=\"1 Outfit\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"-1\">\n								<label for=\"et_pb_contact_outfit_0_7_0\"><i></i>1 Outfit</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_1\" class=\"input\" value=\"2 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"0\">\n								<label for=\"et_pb_contact_outfit_0_7_1\"><i></i>2 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_2\" class=\"input\" value=\"3 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"1\">\n								<label for=\"et_pb_contact_outfit_0_7_2\"><i></i>3 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_3\" class=\"input\" value=\"4 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"2\">\n								<label for=\"et_pb_contact_outfit_0_7_3\"><i></i>4 Outfits</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_outfit_0_7_4\" class=\"input\" value=\"5 Outfits\" name=\"et_pb_contact_outfit_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"outfit\"  data-id=\"3\">\n								<label for=\"et_pb_contact_outfit_0_7_4\"><i></i>5 Outfits</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_8 et_pb_contact_field_last\" data-id=\"date-time-picker\" data-type=\"input\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_date-time-picker_0\" class=\"et_pb_contact_form_label\">What date would you like the services?</label>\n				<input type=\"text\" id=\"et_pb_contact_date-time-picker_0\" class=\"input\" value=\"\" name=\"et_pb_contact_date-time-picker_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"date-time-picker\" placeholder=\"What date would you like the services?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message (such as your outfit color, etc.)</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"not_required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message (such as your outfit color, etc.)\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\" data-icon=\"&#x4e;\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"d4e3d152c6\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/divi_overlay/\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(3285,1483,'_et_pb_truncate_post_date','2022-10-18 04:53:22'),(3286,1483,'_et_pb_old_content',''),(3287,1483,'_yoast_wpseo_estimated-reading-time-minutes','2'),(3288,1483,'_yoast_wpseo_wordproof_timestamp',''),(3289,1483,'_et_pb_built_for_post_type','page'),(3290,1483,'_et_pb_ab_subjects',''),(3291,1483,'_et_pb_enable_shortcode_tracking',''),(3292,1483,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1483\" /]'),(3293,1483,'_et_pb_custom_css',''),(3294,1483,'_et_pb_gutter_width','3'),(3295,1483,'_thumbnail_id','0'),(3296,1483,'_global_colors_info','{}'),(3297,1483,'_et_builder_version','VB|Divi|4.17.4'),(3298,1483,'_et_pb_show_page_creation','off'),(3299,1483,'_yoast_wpseo_content_score','90'),(3456,1523,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.412721763569294353146688081324100494384765625;s:5:\"bytes\";i:612459;s:11:\"size_before\";i:2732640;s:10:\"size_after\";i:2120181;s:4:\"time\";d:0.72000000000000008437694987151189707219600677490234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:62.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:36201;s:11:\"size_before\";i:57552;s:10:\"size_after\";i:21351;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:40423;s:11:\"size_before\";i:188640;s:10:\"size_after\";i:148217;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:81.7099999999999937472239253111183643341064453125;s:5:\"bytes\";i:35583;s:11:\"size_before\";i:43546;s:10:\"size_after\";i:7963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:39575;s:11:\"size_before\";i:161768;s:10:\"size_after\";i:122193;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:44365;s:11:\"size_before\";i:337890;s:10:\"size_after\";i:293525;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:61.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:35944;s:11:\"size_before\";i:57989;s:10:\"size_after\";i:22045;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:39093;s:11:\"size_before\";i:149810;s:10:\"size_after\";i:110717;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.75;s:5:\"bytes\";i:36182;s:11:\"size_before\";i:61583;s:10:\"size_after\";i:25401;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:36630;s:11:\"size_before\";i:75622;s:10:\"size_after\";i:38992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:42443;s:11:\"size_before\";i:258086;s:10:\"size_after\";i:215643;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:37151;s:11:\"size_before\";i:83557;s:10:\"size_after\";i:46406;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:65380;s:11:\"size_before\";i:603041;s:10:\"size_after\";i:537661;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:44304;s:11:\"size_before\";i:331778;s:10:\"size_after\";i:287474;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:41641;s:11:\"size_before\";i:226241;s:10:\"size_after\";i:184600;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:37544;s:11:\"size_before\";i:95537;s:10:\"size_after\";i:57993;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3913,1649,'_wp_attached_file','2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg'),(3914,1649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1849;s:6:\"height\";i:2509;s:4:\"file\";s:40:\"2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"IMG_4526-1-LOOK-FINAL-2000PX-755x1024.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"IMG_4526-1-LOOK-FINAL-2000PX-768x1042.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1042;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"IMG_4526-1-LOOK-FINAL-2000PX-1132x1536.jpg\";s:5:\"width\";i:1132;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"IMG_4526-1-LOOK-FINAL-2000PX-1509x2048.jpg\";s:5:\"width\";i:1509;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"IMG_4526-1-LOOK-FINAL-2000PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"IMG_4526-1-LOOK-FINAL-2000PX-1080x1466.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"IMG_4526-1-LOOK-FINAL-2000PX-1849x1800.jpg\";s:5:\"width\";i:1849;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"IMG_4526-1-LOOK-FINAL-2000PX-1280x1737.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1737;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"IMG_4526-1-LOOK-FINAL-2000PX-980x1330.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"IMG_4526-1-LOOK-FINAL-2000PX-480x651.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1633383840\";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\";}}'),(3911,1646,'_edit_last','1'),(3912,1646,'_edit_lock','1659237551:1'),(3847,1610,'_wp_attached_file','2022/07/IDRAS-FLY-IMG_1443-1500px.jpg'),(3848,1610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1963;s:4:\"file\";s:37:\"2022/07/IDRAS-FLY-IMG_1443-1500px.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-229x300.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"IDRAS-FLY-IMG_1443-1500px-782x1024.jpg\";s:5:\"width\";i:782;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"IDRAS-FLY-IMG_1443-1500px-768x1005.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"IDRAS-FLY-IMG_1443-1500px-1174x1536.jpg\";s:5:\"width\";i:1174;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"IDRAS-FLY-IMG_1443-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:39:\"IDRAS-FLY-IMG_1443-1500px-1080x1413.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:39:\"IDRAS-FLY-IMG_1443-1500px-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:39:\"IDRAS-FLY-IMG_1443-1500px-1280x1675.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"IDRAS-FLY-IMG_1443-1500px-980x1282.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"IDRAS-FLY-IMG_1443-1500px-480x628.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3865,1617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2072;s:4:\"file\";s:38:\"2022/07/IDRAS-WALK-IMG_1466-1500px.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"IDRAS-WALK-IMG_1466-1500px-741x1024.jpg\";s:5:\"width\";i:741;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"IDRAS-WALK-IMG_1466-1500px-768x1061.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1061;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"IDRAS-WALK-IMG_1466-1500px-1112x1536.jpg\";s:5:\"width\";i:1112;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"IDRAS-WALK-IMG_1466-1500px-1483x2048.jpg\";s:5:\"width\";i:1483;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"IDRAS-WALK-IMG_1466-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"IDRAS-WALK-IMG_1466-1500px-1080x1492.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:40:\"IDRAS-WALK-IMG_1466-1500px-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"IDRAS-WALK-IMG_1466-1500px-1280x1768.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"IDRAS-WALK-IMG_1466-1500px-980x1354.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"IDRAS-WALK-IMG_1466-1500px-480x663.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3807,1600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:35:\"2022/07/Black-Hoodie9441-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Black-Hoodie9441-1500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"Black-Hoodie9441-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"Black-Hoodie9441-1500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"Black-Hoodie9441-1500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"Black-Hoodie9441-1500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3864,1617,'_wp_attached_file','2022/07/IDRAS-WALK-IMG_1466-1500px.jpg'),(4320,1114,'_yoast_wpseo_wordproof_timestamp',''),(3961,1659,'_et_pb_built_for_post_type','page'),(3962,1660,'_et_pb_built_for_post_type','page'),(3017,1380,'_wp_attached_file','2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg'),(3018,1380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1461;s:4:\"file\";s:48:\"2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-1024x598.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-768x449.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-1536x898.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:898;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-2048x1197.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-1080x631.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-1280x748.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:748;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-980x573.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"Flow-presence_MG_8542-1-FQ-2500PX-CP-480x281.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3019,1380,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2939463004705515913883573375642299652099609375;s:5:\"bytes\";i:50706;s:11:\"size_before\";i:957811;s:10:\"size_after\";i:907105;s:4:\"time\";d:0.6699999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:819;s:11:\"size_before\";i:8831;s:10:\"size_after\";i:8012;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3481;s:11:\"size_before\";i:65815;s:10:\"size_after\";i:62334;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:740;s:11:\"size_before\";i:6681;s:10:\"size_after\";i:5941;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:2204;s:11:\"size_before\";i:39822;s:10:\"size_after\";i:37618;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7340;s:11:\"size_before\";i:144726;s:10:\"size_after\";i:137386;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:12703;s:11:\"size_before\";i:252237;s:10:\"size_after\";i:239534;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1004;s:11:\"size_before\";i:15024;s:10:\"size_after\";i:14020;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4279;s:11:\"size_before\";i:82553;s:10:\"size_after\";i:78274;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1146;s:11:\"size_before\";i:17839;s:10:\"size_after\";i:16693;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1631;s:11:\"size_before\";i:28932;s:10:\"size_after\";i:27301;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3825;s:11:\"size_before\";i:72766;s:10:\"size_after\";i:68941;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1872;s:11:\"size_before\";i:42068;s:10:\"size_after\";i:40196;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:5191;s:11:\"size_before\";i:101371;s:10:\"size_after\";i:96180;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3299;s:11:\"size_before\";i:60968;s:10:\"size_after\";i:57669;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1172;s:11:\"size_before\";i:18178;s:10:\"size_after\";i:17006;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(2848,1290,'_wp_attached_file','2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg'),(2849,1290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2022;s:4:\"file\";s:40:\"2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-1500pXN1-760x1024.jpg\";s:5:\"width\";i:760;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-1500pXN1-768x1035.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1035;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-1500pXN1-1139x1536.jpg\";s:5:\"width\";i:1139;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-1500pXN1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-1500pXN1-1080x1456.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-1500pXN1-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:42:\"CNJ-VISION-IMG_4553-1500pXN1-1280x1725.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"CNJ-VISION-IMG_4553-1500pXN1-980x1321.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:40:\"CNJ-VISION-IMG_4553-1500pXN1-480x647.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3172,1133,'_yoast_wpseo_wordproof_timestamp',''),(3475,1529,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.584811558747897919374736375175416469573974609375;s:5:\"bytes\";i:503627;s:11:\"size_before\";i:2135387;s:10:\"size_after\";i:1631760;s:4:\"time\";d:0.9499999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.0100000000000051159076974727213382720947265625;s:5:\"bytes\";i:27238;s:11:\"size_before\";i:39467;s:10:\"size_after\";i:12229;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:31548;s:11:\"size_before\";i:131349;s:10:\"size_after\";i:99801;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:85.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:26864;s:11:\"size_before\";i:31454;s:10:\"size_after\";i:4590;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:29624;s:11:\"size_before\";i:89504;s:10:\"size_after\";i:59880;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:36732;s:11:\"size_before\";i:245922;s:10:\"size_after\";i:209190;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:42083;s:11:\"size_before\";i:388889;s:10:\"size_after\";i:346806;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:66.0199999999999960209606797434389591217041015625;s:5:\"bytes\";i:27244;s:11:\"size_before\";i:41269;s:10:\"size_after\";i:14025;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:30301;s:11:\"size_before\";i:108175;s:10:\"size_after\";i:77874;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:63.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:27317;s:11:\"size_before\";i:43148;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:53.06000000000000227373675443232059478759765625;s:5:\"bytes\";i:27719;s:11:\"size_before\";i:52243;s:10:\"size_after\";i:24524;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:32129;s:11:\"size_before\";i:142312;s:10:\"size_after\";i:110183;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:27846;s:11:\"size_before\";i:55617;s:10:\"size_after\";i:27771;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:43540;s:11:\"size_before\";i:403726;s:10:\"size_after\";i:360186;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:34224;s:11:\"size_before\";i:184135;s:10:\"size_after\";i:149911;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:31311;s:11:\"size_before\";i:123597;s:10:\"size_after\";i:92286;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:51.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:27907;s:11:\"size_before\";i:54580;s:10:\"size_after\";i:26673;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3454,1523,'_wp_attached_file','2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg'),(3455,1523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1628;s:6:\"height\";i:1929;s:4:\"file\";s:47:\"2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-MOB-864x1024.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-768x910.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Noelle-Headshot-IMG_5345-2500PX-MOB-1296x1536.jpg\";s:5:\"width\";i:1296;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-MOB-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:49:\"Noelle-Headshot-IMG_5345-2500PX-MOB-1080x1280.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:49:\"Noelle-Headshot-IMG_5345-2500PX-MOB-1628x1800.jpg\";s:5:\"width\";i:1628;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:49:\"Noelle-Headshot-IMG_5345-2500PX-MOB-1280x1517.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:48:\"Noelle-Headshot-IMG_5345-2500PX-MOB-980x1161.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Noelle-Headshot-IMG_5345-2500PX-MOB-480x569.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1656801908\";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\";}}'),(2877,1302,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5664457711895531932810854414128698408603668212890625;s:5:\"bytes\";i:19279;s:11:\"size_before\";i:1230748;s:10:\"size_after\";i:1211469;s:4:\"time\";d:1.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:683;s:11:\"size_before\";i:8494;s:10:\"size_after\";i:7811;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:308;s:11:\"size_before\";i:52462;s:10:\"size_after\";i:52154;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.25;s:5:\"bytes\";i:703;s:11:\"size_before\";i:4934;s:10:\"size_after\";i:4231;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.60999999999999998667732370449812151491641998291015625;s:5:\"bytes\";i:362;s:11:\"size_before\";i:59467;s:10:\"size_after\";i:59105;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.9499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1061;s:11:\"size_before\";i:111322;s:10:\"size_after\";i:110261;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:3489;s:11:\"size_before\";i:204874;s:10:\"size_after\";i:201385;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:550;s:11:\"size_before\";i:13443;s:10:\"size_after\";i:12893;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.429999999999999993338661852249060757458209991455078125;s:5:\"bytes\";i:292;s:11:\"size_before\";i:68302;s:10:\"size_after\";i:68010;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:548;s:11:\"size_before\";i:14521;s:10:\"size_after\";i:13973;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:445;s:11:\"size_before\";i:21487;s:10:\"size_after\";i:21042;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.9899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1121;s:11:\"size_before\";i:113448;s:10:\"size_after\";i:112327;s:4:\"time\";d:0.25;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:558;s:11:\"size_before\";i:20418;s:10:\"size_after\";i:19860;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:6004;s:11:\"size_before\";i:255669;s:10:\"size_after\";i:249665;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1931;s:11:\"size_before\";i:160944;s:10:\"size_after\";i:159013;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.84999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:794;s:11:\"size_before\";i:93588;s:10:\"size_after\";i:92794;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5700000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:430;s:11:\"size_before\";i:27375;s:10:\"size_after\";i:26945;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2393,463,'_et_builder_dynamic_assets_loading_attr_threshold','2'),(3528,1539,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.603464478176062524283906896016560494899749755859375;s:5:\"bytes\";i:20141;s:11:\"size_before\";i:773623;s:10:\"size_after\";i:753482;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:910;s:11:\"size_before\";i:14643;s:10:\"size_after\";i:13733;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.029999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:2167;s:11:\"size_before\";i:106716;s:10:\"size_after\";i:104549;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:828;s:11:\"size_before\";i:5875;s:10:\"size_after\";i:5047;s:4:\"time\";i:0;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1456;s:11:\"size_before\";i:64375;s:10:\"size_after\";i:62919;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1054;s:11:\"size_before\";i:16839;s:10:\"size_after\";i:15785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:2243;s:11:\"size_before\";i:85782;s:10:\"size_after\";i:83539;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:18182;s:10:\"size_after\";i:17179;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1172;s:11:\"size_before\";i:27320;s:10:\"size_after\";i:26148;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8600000000000000976996261670137755572795867919921875;s:5:\"bytes\";i:2159;s:11:\"size_before\";i:116358;s:10:\"size_after\";i:114199;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1247;s:11:\"size_before\";i:30736;s:10:\"size_after\";i:29489;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7199999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:158858;s:10:\"size_after\";i:156122;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:2110;s:11:\"size_before\";i:98312;s:10:\"size_after\";i:96202;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1056;s:11:\"size_before\";i:29627;s:10:\"size_after\";i:28571;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4237,1751,'_wp_attached_file','2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg'),(4238,1751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1378;s:4:\"file\";s:41:\"2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"MORLON-PRAYER-IMG_1807-1500px-1024x941.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-768x706.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"MORLON-PRAYER-IMG_1807-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:42:\"MORLON-PRAYER-IMG_1807-1500px-1080x992.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:992;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"MORLON-PRAYER-IMG_1807-1500px-1280x1176.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-980x900.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"MORLON-PRAYER-IMG_1807-1500px-480x441.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3156,1463,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2389;s:10:\"size_after\";i:2389;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2389;s:10:\"size_after\";i:2389;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3437,1518,'_yoast_wpseo_content_score','90'),(3486,1534,'_wp_attached_file','2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg'),(3487,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:714;s:6:\"height\";i:669;s:4:\"file\";s:39:\"2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"ASH-GAZE-IMG_0003_700PX-MOB-480x450.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3488,1534,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.33156397622796784929732893942855298519134521484375;s:5:\"bytes\";i:8397;s:11:\"size_before\";i:157496;s:10:\"size_after\";i:149099;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1105;s:11:\"size_before\";i:15682;s:10:\"size_after\";i:14577;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:936;s:11:\"size_before\";i:6582;s:10:\"size_after\";i:5646;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1092;s:11:\"size_before\";i:17377;s:10:\"size_after\";i:16285;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1129;s:11:\"size_before\";i:19204;s:10:\"size_after\";i:18075;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1275;s:11:\"size_before\";i:29704;s:10:\"size_after\";i:28429;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1478;s:11:\"size_before\";i:36482;s:10:\"size_after\";i:35004;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1382;s:11:\"size_before\";i:32465;s:10:\"size_after\";i:31083;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(3691,1575,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.73507167071480328246479984954930841922760009765625;s:5:\"bytes\";i:65909;s:11:\"size_before\";i:1764598;s:10:\"size_after\";i:1698689;s:4:\"time\";d:2.970000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:884;s:11:\"size_before\";i:9863;s:10:\"size_after\";i:8979;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2977;s:11:\"size_before\";i:68684;s:10:\"size_after\";i:65707;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:773;s:11:\"size_before\";i:4847;s:10:\"size_after\";i:4074;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:2465;s:11:\"size_before\";i:56585;s:10:\"size_after\";i:54120;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5342;s:11:\"size_before\";i:140750;s:10:\"size_after\";i:135408;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:8734;s:11:\"size_before\";i:239638;s:10:\"size_after\";i:230904;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:921;s:11:\"size_before\";i:12824;s:10:\"size_after\";i:11903;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5;s:5:\"bytes\";i:2260;s:11:\"size_before\";i:64548;s:10:\"size_after\";i:62288;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:937;s:11:\"size_before\";i:14207;s:10:\"size_after\";i:13270;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1225;s:11:\"size_before\";i:22020;s:10:\"size_after\";i:20795;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4019;s:11:\"size_before\";i:102790;s:10:\"size_after\";i:98771;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:21761;s:10:\"size_after\";i:20581;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10863;s:11:\"size_before\";i:389334;s:10:\"size_after\";i:378471;s:4:\"time\";d:0.81999999999999995115018691649311222136020660400390625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:5334;s:11:\"size_before\";i:139544;s:10:\"size_after\";i:134210;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:3640;s:11:\"size_before\";i:86782;s:10:\"size_after\";i:83142;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:26054;s:10:\"size_after\";i:24639;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"wp_scaled\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:12940;s:11:\"size_before\";i:364367;s:10:\"size_after\";i:351427;s:4:\"time\";d:0.89000000000000001332267629550187848508358001708984375;}}}'),(3696,1577,'_wp_attached_file','2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg'),(3697,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2187;s:4:\"file\";s:45:\"2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-702x1024.jpg\";s:5:\"width\";i:702;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-768x1120.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1053x1536.jpg\";s:5:\"width\";i:1053;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1405x2048.jpg\";s:5:\"width\";i:1405;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1080x1575.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-1280x1866.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1866;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-980x1429.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG-4145-1500px2-480x700.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3427,1518,'_et_pb_built_for_post_type','page'),(3428,1518,'_et_pb_ab_subjects',''),(3429,1518,'_et_pb_enable_shortcode_tracking',''),(3430,1518,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1518\" /]'),(3114,1420,'_wp_attached_file','2022/07/Daddy-Boss-IMG_1000-1500PX.jpg'),(3115,1420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1926;s:4:\"file\";s:38:\"2022/07/Daddy-Boss-IMG_1000-1500PX.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Daddy-Boss-IMG_1000-1500PX-798x1024.jpg\";s:5:\"width\";i:798;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-768x986.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Daddy-Boss-IMG_1000-1500PX-1196x1536.jpg\";s:5:\"width\";i:1196;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Daddy-Boss-IMG_1000-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Daddy-Boss-IMG_1000-1500PX-1080x1387.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:40:\"Daddy-Boss-IMG_1000-1500PX-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Daddy-Boss-IMG_1000-1500PX-1280x1644.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:39:\"Daddy-Boss-IMG_1000-1500PX-980x1258.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Daddy-Boss-IMG_1000-1500PX-480x616.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3645,1563,'_wp_attached_file','2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg'),(3646,1563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1876;s:4:\"file\";s:47:\"2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-1536x1153.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-2048x1537.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:49:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-2500x1800.jpg\";s:5:\"width\";i:2500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-1280x961.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-2500px-cp-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3647,1563,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.339740762603953694309666389017365872859954833984375;s:5:\"bytes\";i:31035;s:11:\"size_before\";i:1326429;s:10:\"size_after\";i:1295394;s:4:\"time\";d:0.7800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:765;s:11:\"size_before\";i:9875;s:10:\"size_after\";i:9110;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:1590;s:11:\"size_before\";i:69798;s:10:\"size_after\";i:68208;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:755;s:11:\"size_before\";i:5329;s:10:\"size_after\";i:4574;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1096;s:11:\"size_before\";i:41972;s:10:\"size_after\";i:40876;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2609;s:11:\"size_before\";i:148228;s:10:\"size_after\";i:145619;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4111;s:11:\"size_before\";i:254187;s:10:\"size_after\";i:250076;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:781;s:11:\"size_before\";i:13085;s:10:\"size_after\";i:12304;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1527;s:11:\"size_before\";i:66804;s:10:\"size_after\";i:65277;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:774;s:11:\"size_before\";i:14232;s:10:\"size_after\";i:13458;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:801;s:11:\"size_before\";i:21401;s:10:\"size_after\";i:20600;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1607;s:11:\"size_before\";i:77224;s:10:\"size_after\";i:75617;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:969;s:11:\"size_before\";i:27968;s:10:\"size_after\";i:26999;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:9166;s:11:\"size_before\";i:386606;s:10:\"size_after\";i:377440;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2156;s:11:\"size_before\";i:105627;s:10:\"size_after\";i:103471;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1496;s:11:\"size_before\";i:64678;s:10:\"size_after\";i:63182;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:832;s:11:\"size_before\";i:19415;s:10:\"size_after\";i:18583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3648,1564,'_wp_attached_file','2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg'),(3649,1564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2260;s:4:\"file\";s:44:\"2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-680x1024.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-768x1157.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1019x1536.jpg\";s:5:\"width\";i:1019;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1359x2048.jpg\";s:5:\"width\";i:1359;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1080x1627.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1280x1929.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1929;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:45:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-980x1477.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:44:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-480x723.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3650,1564,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.9190752741914476331430705613456666469573974609375;s:5:\"bytes\";i:30794;s:11:\"size_before\";i:1604627;s:10:\"size_after\";i:1573833;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:809;s:11:\"size_before\";i:10364;s:10:\"size_after\";i:9555;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:1448;s:11:\"size_before\";i:72269;s:10:\"size_after\";i:70821;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:745;s:11:\"size_before\";i:5828;s:10:\"size_after\";i:5083;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1698;s:11:\"size_before\";i:89248;s:10:\"size_after\";i:87550;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:2404;s:11:\"size_before\";i:147022;s:10:\"size_after\";i:144618;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:3106;s:11:\"size_before\";i:245668;s:10:\"size_after\";i:242562;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:811;s:11:\"size_before\";i:16806;s:10:\"size_after\";i:15995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1544;s:11:\"size_before\";i:86488;s:10:\"size_after\";i:84944;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:883;s:11:\"size_before\";i:18547;s:10:\"size_after\";i:17664;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:28221;s:10:\"size_after\";i:27175;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5700000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:2566;s:11:\"size_before\";i:163048;s:10:\"size_after\";i:160482;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1201;s:11:\"size_before\";i:28587;s:10:\"size_after\";i:27386;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:6069;s:11:\"size_before\";i:294274;s:10:\"size_after\";i:288205;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:3068;s:11:\"size_before\";i:220560;s:10:\"size_after\";i:217492;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2192;s:11:\"size_before\";i:137404;s:10:\"size_after\";i:135212;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:40293;s:10:\"size_after\";i:39089;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3651,1565,'_wp_attached_file','2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg'),(3652,1565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2260;s:4:\"file\";s:46:\"2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-680x1024.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-768x1157.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1019x1536.jpg\";s:5:\"width\";i:1019;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1359x2048.jpg\";s:5:\"width\";i:1359;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1080x1627.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-1280x1929.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1929;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-980x1477.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:46:\"Q-STRAIGHT-SMILE-IMG_4145-1500PX-1-480x723.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3653,1565,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.9190752741914476331430705613456666469573974609375;s:5:\"bytes\";i:30794;s:11:\"size_before\";i:1604627;s:10:\"size_after\";i:1573833;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:809;s:11:\"size_before\";i:10364;s:10:\"size_after\";i:9555;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:1448;s:11:\"size_before\";i:72269;s:10:\"size_after\";i:70821;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:745;s:11:\"size_before\";i:5828;s:10:\"size_after\";i:5083;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1698;s:11:\"size_before\";i:89248;s:10:\"size_after\";i:87550;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6399999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:2404;s:11:\"size_before\";i:147022;s:10:\"size_after\";i:144618;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:3106;s:11:\"size_before\";i:245668;s:10:\"size_after\";i:242562;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:811;s:11:\"size_before\";i:16806;s:10:\"size_after\";i:15995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1544;s:11:\"size_before\";i:86488;s:10:\"size_after\";i:84944;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:883;s:11:\"size_before\";i:18547;s:10:\"size_after\";i:17664;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:28221;s:10:\"size_after\";i:27175;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5700000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:2566;s:11:\"size_before\";i:163048;s:10:\"size_after\";i:160482;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1201;s:11:\"size_before\";i:28587;s:10:\"size_after\";i:27386;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:6069;s:11:\"size_before\";i:294274;s:10:\"size_after\";i:288205;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:3068;s:11:\"size_before\";i:220560;s:10:\"size_after\";i:217492;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2192;s:11:\"size_before\";i:137404;s:10:\"size_after\";i:135212;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:40293;s:10:\"size_after\";i:39089;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3849,1611,'_wp_attached_file','2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg'),(4869,98,'_et_dynamic_cached_shortcodes','a:12:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:12:\"et_pb_button\";i:5;s:22:\"et_pb_fullwidth_header\";i:6;s:13:\"et_pb_gallery\";i:7;s:11:\"et_pb_image\";i:8;s:10:\"et_pb_menu\";i:9;s:25:\"et_pb_social_media_follow\";i:10;s:10:\"et_pb_text\";i:11;s:11:\"et_pb_video\";}'),(4870,98,'_et_dynamic_cached_attributes','a:4:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x45;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4871,98,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:58:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c677ec6823b4594c5ba971787122e7\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0cce32b7ec99230df0788719a53b3d4c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_34b23f37fef37adccf78037127f10b71\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a2ea763125897e779f7dce1d3e68c27f\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9b60500249bed8dbbf2d6c82cf3e5b7d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_daaa18f008cd41265d01b669660a1fb4\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5e6ff88e82eca494a3f6dbe7f838de09\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d0e16145635c85739d426ee1b5e137ef\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b572febeab75a9bb72e6bf8975c885cc\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f20490dd1d7639fcda13a437262cd7ab\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_08c83ff2548a495d344d619e9a6dae19\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_838ac7b9c032aa962c4155d9e23c4e46\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3b2e9cd7b441f46358aba259fbb4718c\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_88b42530bcc464490702978f10bb18c9\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4bbd1798a69ff5aa13719cd685812295\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_dd284740fe89a42f3f4174c6da3dde23\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_19dd690bc428c49023e54a334fdf27ae\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4253691271004ddb7e876e97ed0b8f76\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_909641c2a01d6dee62c51835e40acaef\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_3342ec2cbe17ee707e0ca5efaae19f09\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_790fd33665006b62793b057187826016\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_982075a4b2114a9818378683d8eb0e63\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_22f096e32244b92324698809dd2ec3dd\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_b03a9d910c9272debf40aab1aa9a3ecc\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_621f292a9c0167b664adf1eccb0f89f2\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_a2d3f22dbbd4e633f0ae65c04ad1adbd\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c7dab0f89428951ea7289472a8714524\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_16bfad7e305c95b61125a1e8f7199b33\";a:8:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_308e705773cb2870e01061df5865ef84\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_99c419fc9443f160cccab8c2709a6146\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_efca6fbe285bb492be50bd4175254971\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a21d594aea20e83ee459c288d813905e\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_2ff38f231120da695d4a602cd97b9070\";a:10:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fb79c68cbd1520008b821cdeb3999a3b\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(4833,85,'_et_dynamic_cached_shortcodes','a:17:{i:0;s:11:\"et_pb_slide\";i:1;s:18:\"et_pb_column_inner\";i:2;s:33:\"et_pb_social_media_follow_network\";i:3;s:18:\"et_pb_contact_form\";i:4;s:19:\"et_pb_contact_field\";i:5;s:13:\"et_pb_section\";i:6;s:9:\"et_pb_row\";i:7;s:12:\"et_pb_column\";i:8;s:15:\"et_pb_row_inner\";i:9;s:12:\"et_pb_button\";i:10;s:22:\"et_pb_fullwidth_header\";i:11;s:22:\"et_pb_fullwidth_slider\";i:12;s:11:\"et_pb_image\";i:13;s:10:\"et_pb_menu\";i:14;s:25:\"et_pb_social_media_follow\";i:15;s:10:\"et_pb_text\";i:16;s:11:\"et_pb_video\";}'),(4834,85,'_et_dynamic_cached_attributes','a:5:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:11:\"button_icon\";a:3:{i:0;s:17:\"&#x24;||divi||400\";i:1;s:17:\"&#x45;||divi||400\";i:2;s:17:\"&#x4e;||divi||400\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fold\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4835,85,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4836,85,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:85:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_4f5e164527a9287282e0e5a0de33ae00\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_slider_1067456db3656ffb8ca19f3d7453b306\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"46\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"16\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_16fb39f889774bf3239016388cfe3bf8\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_3e4564c99ad13b4aac3865cf1cd819e2\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_87d885826ec6f8798c27ea0f7fcc6f55\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_2a5d07584bcb462c046dbf9b69826b86\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_c5c4d13ada5d0fd716b9e2af37cd2dd9\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_1bd046469699564b8d5d2d02c2f94c0b\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_cd6b73f9290c11d7f6501cb7ea92419d\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_016d36bfaf886e1a7e49ef945b28e152\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_c2ce33d8690735d2ca1793f9f0725a89\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_302493790a1cc8f2f80929198761a795\";a:9:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"bared\";b:1;s:5:\"baret\";b:1;s:5:\"barep\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0a3fafdba7680ef2ff921466fde3cf76\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_16ce95774bb1e302ab75ea5ae5a2ad63\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_aed4385319c2d4029ce9bc99c008d2a0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3c9795704cef681c5dcfdb78764beea6\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_12429cc38932b30684e99700dc7c8382\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_fbec6c40cf4f6579f5b7f7d5d72bd173\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_7ce8f4dd5cb26228a9d524e0c67bf134\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6f4fc63b2d6922b5032342e001435de0\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_fba97fc48c9b723089ecd959ac8a7f06\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_802e3416973f4b05569bf7ad97efcee6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_23ee43eafcc948813d0d6fa7f747571f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_170ca76a795ed80d5dccc149e413b5a1\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_383706a9d2b2a90b85f538b0c926f5b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0963ec74b69017efae5990465bf90560\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bbf970c935e7ccd5e43edd00055836a0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_11579a26fa46cd503736b0d7347bef96\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_54ca9441bf100f1d3b9f8ecae8795e66\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9e8074ba77e991d32f7bf5565d729a7c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ced0257a7ca04bf6e6c563f75c758419\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_84bd03da1a4d3157e522999ec836052c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_a8ca03b71da8d8fcc4c7f64841120af6\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a6660090d595172f21e6d46d3c3ccbc5\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_8b119c57f5d593f4843f1785deefbc9a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_05ca35a1a1ce028025cc90604a32e637\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2b81cc402c05b867b094385c9f9217b6\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4798a15c163170b534488729df31916b\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_6451fa271e06cfbc1ff6556753efac7a\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2317ad3ce740180ae5a915ce09d81c85\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e215ded904ca905987a26ef030c1f875\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_2a1f786008e005f1d4d77752389a8f9c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_16e7d9bcc4785b289fe69653f50c8db5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_cf94e556f7863291e534aba6233d131d\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d07931a10a1c184993672c1a1a78f1c9\";a:5:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_015e7b2aa584b8292121c68175c2e279\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_68383690cc348c41f612bdd594afe7fe\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e714b781e1937a74029a7bf6ee00b702\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1d4aa49bf5f77af3fa430761c93db17f\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a73a6bef4f90ffdb48b9030ae3b0952d\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bc2ee2cd864a96bd7d7af480d007cb0c\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2ae438c68a8fa8dc80a61decc5cc2efd\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bbc8c5d2c0901838f7b2cb509afa2f23\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_28fa0bdb261a8247a3cc965081709d26\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_3774df33a9a2f12fdfcce3c97abed0ba\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(4837,9,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:11:\"et_pb_image\";i:2;s:18:\"et_pb_contact_form\";i:3;s:19:\"et_pb_contact_field\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:11:\"et_pb_blurb\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:13:\"et_pb_gallery\";i:11;s:10:\"et_pb_menu\";i:12;s:25:\"et_pb_social_media_follow\";i:13;s:10:\"et_pb_text\";i:14;s:11:\"et_pb_video\";}'),(4838,9,'_et_dynamic_cached_attributes','a:7:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"2\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"flip\";}s:9:\"font_icon\";a:1:{i:0;s:19:\"&#xe044;||divi||400\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:11:\"button_icon\";a:2:{i:0;s:17:\"&#x45;||divi||400\";i:1;s:17:\"&#x4e;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4839,9,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4840,9,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:96:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c776a100a3307466c9e9b899ad29bd34\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_6fa3d261d9019e496164c1591e4310c6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_623f18a4bfcdf942e1f7b4ab3c2f520a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5035ae197565fc82e4eb6e362ced5414\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_71db9ad3d7753fea8f209979c9ee8e24\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_34b23f37fef37adccf78037127f10b71\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_2ee2a01690887875ca5912795426b03d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_be7c73f46958c46a87e25235d9ac4e1d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_cfb3b4877a0b58a3a3e87201ddfe6e91\";a:7:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_46e8b73b87faf5a8712bd3d533b1f9ef\";a:7:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_736ce81940ea0ffb2094f4d9632caae3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_650c08aa7998b0a0859281c3444d64a8\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_054a2c2e0a83736730101785097e7227\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_a45334b95cffc187dac51688c0e7e6b5\";a:7:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_a2eee621b34d174bdb3250b153792c26\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_403177ed85589bd144488cc6dccad8db\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_630ed0a7b8b66fcf3306827f50c22141\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_27be3081eee2cee50db91b5b1a8c32e7\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_5739dbb146e292eaf6a8823474931016\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_601fa67ecaae2216e6a4d2cd44d7e122\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_b6af80afff5e87bde8db357cb8dc4efe\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_32f0c6150a7183ff58307961f9c7f4db\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_638197e36403b1a8f74f98230d80dfe7\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_be4f889711f3e5ec7f6fe671f672ce11\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ebae1eecb82ffc2100b223da99583d72\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_82e8b5a6b234370a704a4eeb6f18a21a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_07aa49bd2d5461c6cf74d5d8f398dc93\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_cba02af5f111705591eaee3c01ca5168\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_770b9a564b4c18e7763265c1896174b1\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_9709fca6c5884b9000936fcd2c3ff40d\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_33255adf5dfd1a7cf70b2fec52e630bb\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_f57c8625a3edb777b59a055f7d7eca2b\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5902f6e885d84340768fd77b97fa2287\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d0654aee09447e1959be36886edaa82d\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_6900935632cec23a895483ba61c07c78\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_f239061b19d6aa0485275b04864d14a0\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_40e9588e03dcc303c96c9b5f433abb17\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_10b4a4070958de1004b53bc14368f1c1\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_2b6ecd1d1d48e41cefda6495356d4712\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_db9e72f36fb434417514ec098ce2b04a\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ba15b8ad7d8c3060fda3bad24c838aa8\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4d0f60ab1b486cae3a520f5362ab1ff7\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_802e3416973f4b05569bf7ad97efcee6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_23ee43eafcc948813d0d6fa7f747571f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_170ca76a795ed80d5dccc149e413b5a1\";a:6:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_383706a9d2b2a90b85f538b0c926f5b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0963ec74b69017efae5990465bf90560\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bbf970c935e7ccd5e43edd00055836a0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_11579a26fa46cd503736b0d7347bef96\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_54ca9441bf100f1d3b9f8ecae8795e66\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_68383690cc348c41f612bdd594afe7fe\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_841ef96527d073997509ea10d7d79565\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_f69461add84afb6636954901f63d2e26\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a73a6bef4f90ffdb48b9030ae3b0952d\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_b2badba5a20a6c201a974a2272cad0dc\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_00391faf6f83e1df5ad9fa4c1f631466\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_9f38cde8effbd56a95d09d3bc2ba5c8e\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a8c4da0ba22eb781dd7646f8ec37ddfc\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_d5fa8e0df611efe702a9baf7dfc0fff4\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e714b781e1937a74029a7bf6ee00b702\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1d4aa49bf5f77af3fa430761c93db17f\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bc2ee2cd864a96bd7d7af480d007cb0c\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2ae438c68a8fa8dc80a61decc5cc2efd\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bbc8c5d2c0901838f7b2cb509afa2f23\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_28fa0bdb261a8247a3cc965081709d26\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_3774df33a9a2f12fdfcce3c97abed0ba\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(3850,1611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2006;s:4:\"file\";s:41:\"2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"IDRAS-SUCESS-IMG_1420-1500px2-766x1024.jpg\";s:5:\"width\";i:766;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"IDRAS-SUCESS-IMG_1420-1500px2-768x1027.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"IDRAS-SUCESS-IMG_1420-1500px2-1149x1536.jpg\";s:5:\"width\";i:1149;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"IDRAS-SUCESS-IMG_1420-1500px2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"IDRAS-SUCESS-IMG_1420-1500px2-1080x1444.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"IDRAS-SUCESS-IMG_1420-1500px2-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"IDRAS-SUCESS-IMG_1420-1500px2-1280x1712.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"IDRAS-SUCESS-IMG_1420-1500px2-980x1311.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"IDRAS-SUCESS-IMG_1420-1500px2-480x642.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:642;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3851,1610,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.57416588244532873464009981034905649721622467041015625;s:5:\"bytes\";i:4460;s:11:\"size_before\";i:776779;s:10:\"size_after\";i:772319;s:4:\"time\";d:0.9299999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:666;s:11:\"size_before\";i:9243;s:10:\"size_after\";i:8577;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:27;s:11:\"size_before\";i:51263;s:10:\"size_after\";i:51236;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:655;s:11:\"size_before\";i:4947;s:10:\"size_after\";i:4292;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.320000000000000006661338147750939242541790008544921875;s:5:\"bytes\";i:161;s:11:\"size_before\";i:50115;s:10:\"size_after\";i:49954;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:97165;s:10:\"size_after\";i:97165;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:671;s:11:\"size_before\";i:12589;s:10:\"size_after\";i:11918;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49934;s:10:\"size_after\";i:49934;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:625;s:11:\"size_before\";i:13714;s:10:\"size_after\";i:13089;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:546;s:11:\"size_before\";i:19725;s:10:\"size_after\";i:19179;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:85119;s:10:\"size_after\";i:85119;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:605;s:11:\"size_before\";i:19406;s:10:\"size_after\";i:18801;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:152818;s:10:\"size_after\";i:152818;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112364;s:10:\"size_after\";i:112364;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73051;s:10:\"size_after\";i:73051;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:504;s:11:\"size_before\";i:25326;s:10:\"size_after\";i:24822;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(3668,1569,'_wp_attached_file','2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg'),(3669,1569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1400;s:4:\"file\";s:47:\"2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-1024x573.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-1536x860.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-2048x1147.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-1080x605.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-1280x717.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-980x549.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Q-BLACK-IMG_4144-HopePage-2500px-CP-480x269.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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:10:\"1657385500\";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\";}}'),(3670,1569,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:42.3445821188861373229883611202239990234375;s:5:\"bytes\";i:348819;s:11:\"size_before\";i:823763;s:10:\"size_after\";i:474944;s:4:\"time\";d:0.3400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:82.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:21515;s:11:\"size_before\";i:26168;s:10:\"size_after\";i:4653;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:23293;s:11:\"size_before\";i:55893;s:10:\"size_after\";i:32600;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:84.909999999999996589394868351519107818603515625;s:5:\"bytes\";i:21438;s:11:\"size_before\";i:25247;s:10:\"size_after\";i:3809;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:52.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:22423;s:11:\"size_before\";i:42323;s:10:\"size_after\";i:19900;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:25997;s:11:\"size_before\";i:95322;s:10:\"size_after\";i:69325;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:29593;s:11:\"size_before\";i:149097;s:10:\"size_after\";i:119504;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:72.099999999999994315658113919198513031005859375;s:5:\"bytes\";i:21670;s:11:\"size_before\";i:30055;s:10:\"size_after\";i:8385;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:24005;s:11:\"size_before\";i:67631;s:10:\"size_after\";i:43626;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:68.340000000000003410605131648480892181396484375;s:5:\"bytes\";i:21706;s:11:\"size_before\";i:31761;s:10:\"size_after\";i:10055;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:58.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22043;s:11:\"size_before\";i:37904;s:10:\"size_after\";i:15861;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.61999999999999744204615126363933086395263671875;s:5:\"bytes\";i:23613;s:11:\"size_before\";i:59592;s:10:\"size_after\";i:35979;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.7999999999999971578290569595992565155029296875;s:5:\"bytes\";i:22158;s:11:\"size_before\";i:44493;s:10:\"size_after\";i:22335;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.27000000000000312638803734444081783294677734375;s:5:\"bytes\";i:24468;s:11:\"size_before\";i:73553;s:10:\"size_after\";i:49085;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:23119;s:11:\"size_before\";i:53598;s:10:\"size_after\";i:30479;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:69.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:21778;s:11:\"size_before\";i:31126;s:10:\"size_after\";i:9348;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3808,1601,'_wp_attached_file','2022/07/black-shirt-9452-1500PX.jpg'),(3809,1601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:35:\"2022/07/black-shirt-9452-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"black-shirt-9452-1500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"black-shirt-9452-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"black-shirt-9452-1500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"black-shirt-9452-1500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"black-shirt-9452-1500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4039,1699,'_wp_attached_file','2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg'),(4040,1699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2051;s:4:\"file\";s:39:\"2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"IDRAS-STYLE-IMG_1464-1500PX-749x1024.jpg\";s:5:\"width\";i:749;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"IDRAS-STYLE-IMG_1464-1500PX-768x1050.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"IDRAS-STYLE-IMG_1464-1500PX-1123x1536.jpg\";s:5:\"width\";i:1123;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"IDRAS-STYLE-IMG_1464-1500PX-1498x2048.jpg\";s:5:\"width\";i:1498;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"IDRAS-STYLE-IMG_1464-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"IDRAS-STYLE-IMG_1464-1500PX-1080x1477.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:41:\"IDRAS-STYLE-IMG_1464-1500PX-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:41:\"IDRAS-STYLE-IMG_1464-1500PX-1280x1750.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:40:\"IDRAS-STYLE-IMG_1464-1500PX-980x1340.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:39:\"IDRAS-STYLE-IMG_1464-1500PX-480x656.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4041,1699,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.49072539291220140800220406163134612143039703369140625;s:5:\"bytes\";i:5249;s:11:\"size_before\";i:1069641;s:10:\"size_after\";i:1064392;s:4:\"time\";d:1.6200000000000003286260152890463359653949737548828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:647;s:11:\"size_before\";i:9130;s:10:\"size_after\";i:8483;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.40000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:214;s:11:\"size_before\";i:53575;s:10:\"size_after\";i:53361;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:641;s:11:\"size_before\";i:4927;s:10:\"size_after\";i:4286;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5500000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:307;s:11:\"size_before\";i:56096;s:10:\"size_after\";i:55789;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:106224;s:10:\"size_after\";i:106224;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:180918;s:10:\"size_after\";i:180918;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:647;s:11:\"size_before\";i:13781;s:10:\"size_after\";i:13134;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:232;s:11:\"size_before\";i:61595;s:10:\"size_after\";i:61363;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:659;s:11:\"size_before\";i:14620;s:10:\"size_after\";i:13961;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.029999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:652;s:11:\"size_before\";i:21487;s:10:\"size_after\";i:20835;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:99064;s:10:\"size_after\";i:99064;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:669;s:11:\"size_before\";i:20415;s:10:\"size_after\";i:19746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183154;s:10:\"size_after\";i:183154;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:133744;s:10:\"size_after\";i:133744;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84009;s:10:\"size_after\";i:84009;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:581;s:11:\"size_before\";i:26902;s:10:\"size_after\";i:26321;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4851,668,'_et_dynamic_cached_shortcodes','a:11:{i:0;s:19:\"et_pb_contact_field\";i:1;s:33:\"et_pb_social_media_follow_network\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:12:\"et_pb_button\";i:6;s:18:\"et_pb_contact_form\";i:7;s:10:\"et_pb_menu\";i:8;s:25:\"et_pb_social_media_follow\";i:9;s:10:\"et_pb_text\";i:10;s:11:\"et_pb_video\";}'),(4852,668,'_et_dynamic_cached_attributes','a:2:{s:11:\"button_icon\";a:2:{i:0;s:6:\"%%45%%\";i:1;s:17:\"&#x45;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4853,668,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4854,668,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:39:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7b15f872d5f2ce4ebcecf8d00321956f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_3d6416868593296c9947dc03f4ba75e8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d8631e22096bdaafc09ff1bcaf870d98\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_fb9d0f4764398840e62c2128a22c0f73\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c91fc0833c5a3d48fec0d9a92855eb36\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8d445b1dfda7ce2df51c70c10e9bd0ea\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_655feec717e276f967c577d9d9ccce6a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_f0fc7f43ceefa9c3f8e4fffa9852d115\";a:10:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1b451133034da1e0e8571059e3a14366\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1e8dc5231c18e85e468133522cf06cd8\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_d01a42201be19f51743d200084761f79\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_52e7226833e20d52989b7b74499b111b\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_490715b49503d770db49ded453d064c7\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a427429a85ba88bd74f2fb975f59d46f\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_1635d3b7dbc7c330dadb51c3caaccb98\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_93af1144c940298d7c825e66a1a63a41\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(3806,1600,'_wp_attached_file','2022/07/Black-Hoodie9441-1500PX.jpg'),(3811,1602,'_wp_attached_file','2022/07/Blue-shirt-IMG_9427-1500PX.jpg'),(3812,1602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:38:\"2022/07/Blue-shirt-IMG_9427-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Blue-shirt-IMG_9427-1500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:39:\"Blue-shirt-IMG_9427-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"Blue-shirt-IMG_9427-1500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:40:\"Blue-shirt-IMG_9427-1500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:38:\"Blue-shirt-IMG_9427-1500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3813,1601,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.33752827567201304503896608366630971431732177734375;s:5:\"bytes\";i:23242;s:11:\"size_before\";i:435445;s:10:\"size_after\";i:412203;s:4:\"time\";d:0.6799999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:837;s:11:\"size_before\";i:8715;s:10:\"size_after\";i:7878;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2661;s:11:\"size_before\";i:58397;s:10:\"size_after\";i:55736;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:673;s:11:\"size_before\";i:3989;s:10:\"size_after\";i:3316;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1879;s:11:\"size_before\";i:34587;s:10:\"size_after\";i:32708;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:947;s:11:\"size_before\";i:9809;s:10:\"size_after\";i:8862;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:2102;s:11:\"size_before\";i:49444;s:10:\"size_after\";i:47342;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:950;s:11:\"size_before\";i:10598;s:10:\"size_after\";i:9648;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1157;s:11:\"size_before\";i:15770;s:10:\"size_after\";i:14613;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2900;s:11:\"size_before\";i:64818;s:10:\"size_after\";i:61918;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1077;s:11:\"size_before\";i:16817;s:10:\"size_after\";i:15740;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:4257;s:11:\"size_before\";i:91843;s:10:\"size_after\";i:87586;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2617;s:11:\"size_before\";i:54160;s:10:\"size_after\";i:51543;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1185;s:11:\"size_before\";i:16498;s:10:\"size_after\";i:15313;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(3814,1603,'_wp_attached_file','2022/07/Sweater-9435-1500PX.jpg'),(3815,1603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:31:\"2022/07/Sweater-9435-1500PX.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Sweater-9435-1500PX-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Sweater-9435-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Sweater-9435-1500PX-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:33:\"Sweater-9435-1500PX-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Sweater-9435-1500PX-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3816,1602,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.0583105411828004349672482931055128574371337890625;s:5:\"bytes\";i:21723;s:11:\"size_before\";i:535272;s:10:\"size_after\";i:513549;s:4:\"time\";d:1.3200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:724;s:11:\"size_before\";i:11009;s:10:\"size_after\";i:10285;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:2778;s:11:\"size_before\";i:71896;s:10:\"size_after\";i:69118;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:677;s:11:\"size_before\";i:4893;s:10:\"size_after\";i:4216;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.390000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:43082;s:10:\"size_after\";i:41623;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:739;s:11:\"size_before\";i:12351;s:10:\"size_after\";i:11612;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1897;s:11:\"size_before\";i:59703;s:10:\"size_after\";i:57806;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:747;s:11:\"size_before\";i:13438;s:10:\"size_after\";i:12691;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:838;s:11:\"size_before\";i:19802;s:10:\"size_after\";i:18964;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2959;s:11:\"size_before\";i:79725;s:10:\"size_after\";i:76766;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:976;s:11:\"size_before\";i:20965;s:10:\"size_after\";i:19989;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:4484;s:11:\"size_before\";i:111168;s:10:\"size_after\";i:106684;s:4:\"time\";d:0.25;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2551;s:11:\"size_before\";i:66331;s:10:\"size_after\";i:63780;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:894;s:11:\"size_before\";i:20909;s:10:\"size_after\";i:20015;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(3817,1603,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.006714437259436323301997617818415164947509765625;s:5:\"bytes\";i:19716;s:11:\"size_before\";i:492074;s:10:\"size_after\";i:472358;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:824;s:11:\"size_before\";i:9752;s:10:\"size_after\";i:8928;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2244;s:11:\"size_before\";i:64724;s:10:\"size_after\";i:62480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:678;s:11:\"size_before\";i:4410;s:10:\"size_after\";i:3732;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1617;s:11:\"size_before\";i:38917;s:10:\"size_after\";i:37300;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:850;s:11:\"size_before\";i:12651;s:10:\"size_after\";i:11801;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1610;s:11:\"size_before\";i:61661;s:10:\"size_after\";i:60051;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:916;s:11:\"size_before\";i:13147;s:10:\"size_after\";i:12231;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1054;s:11:\"size_before\";i:19459;s:10:\"size_after\";i:18405;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.350000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:2392;s:11:\"size_before\";i:71405;s:10:\"size_after\";i:69013;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:18357;s:10:\"size_after\";i:17232;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3277;s:11:\"size_before\";i:99601;s:10:\"size_after\";i:96324;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2067;s:11:\"size_before\";i:59495;s:10:\"size_after\";i:57428;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1062;s:11:\"size_before\";i:18495;s:10:\"size_after\";i:17433;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(3852,1611,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3596209800102074805039364946424029767513275146484375;s:5:\"bytes\";i:8285;s:11:\"size_before\";i:609361;s:10:\"size_after\";i:601076;s:4:\"time\";d:0.6700000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:753;s:11:\"size_before\";i:7114;s:10:\"size_after\";i:6361;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:600;s:11:\"size_before\";i:39276;s:10:\"size_after\";i:38676;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:745;s:11:\"size_before\";i:4125;s:10:\"size_after\";i:3380;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:525;s:11:\"size_before\";i:39499;s:10:\"size_after\";i:38974;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74763;s:10:\"size_after\";i:74763;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:770;s:11:\"size_before\";i:10030;s:10:\"size_after\";i:9260;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.320000000000000006661338147750939242541790008544921875;s:5:\"bytes\";i:129;s:11:\"size_before\";i:39766;s:10:\"size_after\";i:39637;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:750;s:11:\"size_before\";i:10805;s:10:\"size_after\";i:10055;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:703;s:11:\"size_before\";i:15310;s:10:\"size_after\";i:14607;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67510;s:10:\"size_after\";i:67510;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:752;s:11:\"size_before\";i:14920;s:10:\"size_after\";i:14168;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:119334;s:10:\"size_after\";i:117822;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:89318;s:10:\"size_after\";i:89318;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:277;s:11:\"size_before\";i:57840;s:10:\"size_after\";i:57563;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:769;s:11:\"size_before\";i:19751;s:10:\"size_after\";i:18982;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(3857,1614,'_wp_attached_file','2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg'),(3858,1614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1970;s:4:\"file\";s:41:\"2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"IDRAS-PRESENT-IMG_1414-1500px-780x1024.jpg\";s:5:\"width\";i:780;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"IDRAS-PRESENT-IMG_1414-1500px-768x1009.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1009;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"IDRAS-PRESENT-IMG_1414-1500px-1170x1536.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"IDRAS-PRESENT-IMG_1414-1500px-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"IDRAS-PRESENT-IMG_1414-1500px-1080x1418.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1418;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:43:\"IDRAS-PRESENT-IMG_1414-1500px-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"IDRAS-PRESENT-IMG_1414-1500px-1280x1681.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"IDRAS-PRESENT-IMG_1414-1500px-980x1287.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:41:\"IDRAS-PRESENT-IMG_1414-1500px-480x630.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(3859,1614,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.63034581741306083824127881598542444407939910888671875;s:5:\"bytes\";i:3575;s:11:\"size_before\";i:567149;s:10:\"size_after\";i:563574;s:4:\"time\";d:0.7100000000000001865174681370262987911701202392578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:604;s:11:\"size_before\";i:6851;s:10:\"size_after\";i:6247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37090;s:10:\"size_after\";i:37090;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:649;s:11:\"size_before\";i:3889;s:10:\"size_after\";i:3240;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36573;s:10:\"size_after\";i:36573;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:71368;s:10:\"size_after\";i:71368;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:586;s:11:\"size_before\";i:9054;s:10:\"size_after\";i:8468;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35837;s:10:\"size_after\";i:35837;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:581;s:11:\"size_before\";i:9890;s:10:\"size_after\";i:9309;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.439999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:488;s:11:\"size_before\";i:14204;s:10:\"size_after\";i:13716;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62501;s:10:\"size_after\";i:62501;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:405;s:11:\"size_before\";i:13945;s:10:\"size_after\";i:13540;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:111666;s:10:\"size_after\";i:111666;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83011;s:10:\"size_after\";i:83011;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53263;s:10:\"size_after\";i:53263;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:262;s:11:\"size_before\";i:18007;s:10:\"size_after\";i:17745;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(3866,1617,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.37246393297823932044821049203164875507354736328125;s:5:\"bytes\";i:4453;s:11:\"size_before\";i:1195552;s:10:\"size_after\";i:1191099;s:4:\"time\";d:0.8600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:657;s:11:\"size_before\";i:10120;s:10:\"size_after\";i:9463;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:63;s:11:\"size_before\";i:59411;s:10:\"size_after\";i:59348;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:704;s:11:\"size_before\";i:5426;s:10:\"size_after\";i:4722;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63072;s:10:\"size_after\";i:63072;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:116826;s:10:\"size_after\";i:116826;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:197460;s:10:\"size_after\";i:197460;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:677;s:11:\"size_before\";i:14604;s:10:\"size_after\";i:13927;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65787;s:10:\"size_after\";i:65787;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.25;s:5:\"bytes\";i:680;s:11:\"size_before\";i:16013;s:10:\"size_after\";i:15333;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:627;s:11:\"size_before\";i:23582;s:10:\"size_after\";i:22955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:110931;s:10:\"size_after\";i:110931;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:600;s:11:\"size_before\";i:22797;s:10:\"size_after\";i:22197;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:214969;s:10:\"size_after\";i:214969;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:149756;s:10:\"size_after\";i:149756;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94340;s:10:\"size_after\";i:94340;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:445;s:11:\"size_before\";i:30458;s:10:\"size_after\";i:30013;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(3873,1620,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.0537535514275224723945711957640014588832855224609375;s:5:\"bytes\";i:8868;s:11:\"size_before\";i:841563;s:10:\"size_after\";i:832695;s:4:\"time\";d:0.489999999999999935607064571740920655429363250732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:830;s:11:\"size_before\";i:12995;s:10:\"size_after\";i:12165;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.84999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:678;s:11:\"size_before\";i:79320;s:10:\"size_after\";i:78642;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:700;s:11:\"size_before\";i:5677;s:10:\"size_after\";i:4977;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:736;s:11:\"size_before\";i:61165;s:10:\"size_after\";i:60429;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157909;s:10:\"size_after\";i:157909;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:873;s:11:\"size_before\";i:15613;s:10:\"size_after\";i:14740;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";i:1;s:5:\"bytes\";i:690;s:11:\"size_before\";i:69018;s:10:\"size_after\";i:68328;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:865;s:11:\"size_before\";i:16977;s:10:\"size_after\";i:16112;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:913;s:11:\"size_before\";i:24835;s:10:\"size_after\";i:23922;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:412;s:11:\"size_before\";i:107175;s:10:\"size_after\";i:106763;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:777;s:11:\"size_before\";i:26883;s:10:\"size_after\";i:26106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:143069;s:10:\"size_after\";i:143069;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:566;s:11:\"size_before\";i:90824;s:10:\"size_after\";i:90258;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:828;s:11:\"size_before\";i:30103;s:10:\"size_after\";i:29275;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4094,1710,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.08824666452420704132464379654265940189361572265625;s:5:\"bytes\";i:60172;s:11:\"size_before\";i:1471829;s:10:\"size_after\";i:1411657;s:4:\"time\";d:0.9899999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1090;s:11:\"size_before\";i:14260;s:10:\"size_after\";i:13170;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:4566;s:11:\"size_before\";i:95507;s:10:\"size_after\";i:90941;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:823;s:11:\"size_before\";i:6870;s:10:\"size_after\";i:6047;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:4334;s:11:\"size_before\";i:92479;s:10:\"size_after\";i:88145;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:6087;s:11:\"size_before\";i:183212;s:10:\"size_after\";i:177125;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1659;s:11:\"size_before\";i:22510;s:10:\"size_after\";i:20851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4973;s:11:\"size_before\";i:107670;s:10:\"size_after\";i:102697;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1792;s:11:\"size_before\";i:24641;s:10:\"size_after\";i:22849;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2321;s:11:\"size_before\";i:37060;s:10:\"size_after\";i:34739;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:6063;s:11:\"size_before\";i:160213;s:10:\"size_after\";i:154150;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2118;s:11:\"size_before\";i:33134;s:10:\"size_after\";i:31016;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.149999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:9484;s:11:\"size_before\";i:301176;s:10:\"size_after\";i:291692;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:6638;s:11:\"size_before\";i:211428;s:10:\"size_after\";i:204790;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5609;s:11:\"size_before\";i:137444;s:10:\"size_after\";i:131835;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2615;s:11:\"size_before\";i:44225;s:10:\"size_after\";i:41610;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4862,1133,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:11:\"et_pb_image\";}'),(4863,1133,'_et_dynamic_cached_attributes','a:1:{s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x4e;||divi||400\";}}'),(4864,1133,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4865,61,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:18:\"et_pb_contact_form\";i:2;s:19:\"et_pb_contact_field\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:11:\"et_pb_blurb\";i:7;s:12:\"et_pb_button\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";i:12;s:11:\"et_pb_video\";}'),(4866,61,'_et_dynamic_cached_attributes','a:7:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fold\";}s:9:\"font_icon\";a:1:{i:0;s:19:\"&#xe044;||divi||400\";}s:11:\"button_icon\";a:2:{i:0;s:17:\"&#x45;||divi||400\";i:1;s:17:\"&#x4e;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4867,61,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4029,1695,'_wp_attached_file','2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg'),(4030,1695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2243;s:4:\"file\";s:48:\"2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"francine-Cocoa-Laugh-IMG_1538-1500PX-685x1024.jpg\";s:5:\"width\";i:685;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"francine-Cocoa-Laugh-IMG_1538-1500PX-768x1148.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1027x1536.jpg\";s:5:\"width\";i:1027;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1370x2048.jpg\";s:5:\"width\";i:1370;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:50:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1080x1615.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1615;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:50:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:50:\"francine-Cocoa-Laugh-IMG_1538-1500PX-1280x1914.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"francine-Cocoa-Laugh-IMG_1538-1500PX-980x1465.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"francine-Cocoa-Laugh-IMG_1538-1500PX-480x718.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4031,1696,'_wp_attached_file','2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg'),(4032,1696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2343;s:4:\"file\";s:48:\"2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-656x1024.jpg\";s:5:\"width\";i:656;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-768x1200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-983x1536.jpg\";s:5:\"width\";i:983;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-1311x2048.jpg\";s:5:\"width\";i:1311;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:49:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:50:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-1080x1687.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:50:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:50:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-1280x1999.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1999;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:49:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-980x1531.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"Francine-Cocoa-Sharp-IMG_1536-1500PX-480x750.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4033,1695,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.8214607165017098200365808224887587130069732666015625;s:5:\"bytes\";i:22281;s:11:\"size_before\";i:1223249;s:10:\"size_after\";i:1200968;s:4:\"time\";d:0.9000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:846;s:11:\"size_before\";i:9975;s:10:\"size_after\";i:9129;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1575;s:11:\"size_before\";i:58492;s:10:\"size_after\";i:56917;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:738;s:11:\"size_before\";i:5274;s:10:\"size_after\";i:4536;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1664;s:11:\"size_before\";i:70455;s:10:\"size_after\";i:68791;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:1581;s:11:\"size_before\";i:113424;s:10:\"size_after\";i:111843;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1162;s:11:\"size_before\";i:187964;s:10:\"size_after\";i:186802;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1103;s:11:\"size_before\";i:13835;s:10:\"size_after\";i:12732;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2247;s:11:\"size_before\";i:62714;s:10:\"size_after\";i:60467;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1175;s:11:\"size_before\";i:15313;s:10:\"size_after\";i:14138;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1453;s:11:\"size_before\";i:22933;s:10:\"size_after\";i:21480;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1598;s:11:\"size_before\";i:123440;s:10:\"size_after\";i:121842;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1133;s:11:\"size_before\";i:24062;s:10:\"size_after\";i:22929;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:1920;s:11:\"size_before\";i:209991;s:10:\"size_after\";i:208071;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.68000000000000004884981308350688777863979339599609375;s:5:\"bytes\";i:1136;s:11:\"size_before\";i:166136;s:10:\"size_after\";i:165000;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1624;s:11:\"size_before\";i:105336;s:10:\"size_after\";i:103712;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1326;s:11:\"size_before\";i:33905;s:10:\"size_after\";i:32579;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4153,1735,'_wp_attached_file','2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4'),(4154,1735,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:197461190;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:53;s:16:\"length_formatted\";s:4:\"0:53\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1659728663;}'),(4124,1717,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.835700656910287609235865602386184036731719970703125;s:5:\"bytes\";i:56650;s:11:\"size_before\";i:1476914;s:10:\"size_after\";i:1420264;s:4:\"time\";d:1.12999999999999989341858963598497211933135986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1033;s:11:\"size_before\";i:11661;s:10:\"size_after\";i:10628;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:3445;s:11:\"size_before\";i:74238;s:10:\"size_after\";i:70793;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:820;s:11:\"size_before\";i:6161;s:10:\"size_after\";i:5341;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3706;s:11:\"size_before\";i:80993;s:10:\"size_after\";i:77287;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:4935;s:11:\"size_before\";i:142974;s:10:\"size_after\";i:138039;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:6133;s:11:\"size_before\";i:236126;s:10:\"size_after\";i:229993;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1333;s:11:\"size_before\";i:17272;s:10:\"size_after\";i:15939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:3622;s:11:\"size_before\";i:79942;s:10:\"size_after\";i:76320;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1405;s:11:\"size_before\";i:18903;s:10:\"size_after\";i:17498;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1849;s:11:\"size_before\";i:28628;s:10:\"size_after\";i:26779;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5037;s:11:\"size_before\";i:140354;s:10:\"size_after\";i:135317;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1829;s:11:\"size_before\";i:28851;s:10:\"size_after\";i:27022;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9003;s:11:\"size_before\";i:264379;s:10:\"size_after\";i:255376;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:5750;s:11:\"size_before\";i:187835;s:10:\"size_after\";i:182085;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:4456;s:11:\"size_before\";i:119635;s:10:\"size_after\";i:115179;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2294;s:11:\"size_before\";i:38962;s:10:\"size_after\";i:36668;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4119,1716,'_wp_attached_file','2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg'),(4120,1716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2135;s:4:\"file\";s:50:\"2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Marvelous-Move-Reease-IMG_0658-1500px6-719x1024.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Marvelous-Move-Reease-IMG_0658-1500px6-768x1093.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1093;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Marvelous-Move-Reease-IMG_0658-1500px6-1079x1536.jpg\";s:5:\"width\";i:1079;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"Marvelous-Move-Reease-IMG_0658-1500px6-1439x2048.jpg\";s:5:\"width\";i:1439;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:51:\"Marvelous-Move-Reease-IMG_0658-1500px6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:52:\"Marvelous-Move-Reease-IMG_0658-1500px6-1080x1537.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:52:\"Marvelous-Move-Reease-IMG_0658-1500px6-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:52:\"Marvelous-Move-Reease-IMG_0658-1500px6-1280x1822.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1822;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:51:\"Marvelous-Move-Reease-IMG_0658-1500px6-980x1395.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:50:\"Marvelous-Move-Reease-IMG_0658-1500px6-480x683.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4121,1717,'_wp_attached_file','2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg'),(4122,1717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2111;s:4:\"file\";s:55:\"2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Marvelous-Triangle-Release-IMG_0650-1500px6-728x1024.jpg\";s:5:\"width\";i:728;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Marvelous-Triangle-Release-IMG_0650-1500px6-768x1081.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1081;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1091x1536.jpg\";s:5:\"width\";i:1091;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1455x2048.jpg\";s:5:\"width\";i:1455;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:57:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1080x1520.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:57:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:57:\"Marvelous-Triangle-Release-IMG_0650-1500px6-1280x1801.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:56:\"Marvelous-Triangle-Release-IMG_0650-1500px6-980x1379.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:55:\"Marvelous-Triangle-Release-IMG_0650-1500px6-480x676.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4123,1716,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.281402384102669156362708235974423587322235107421875;s:5:\"bytes\";i:42260;s:11:\"size_before\";i:1287864;s:10:\"size_after\";i:1245604;s:4:\"time\";d:1.7100000000000001865174681370262987911701202392578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:963;s:11:\"size_before\";i:10302;s:10:\"size_after\";i:9339;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:2553;s:11:\"size_before\";i:63778;s:10:\"size_after\";i:61225;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:770;s:11:\"size_before\";i:5457;s:10:\"size_after\";i:4687;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2776;s:11:\"size_before\";i:70991;s:10:\"size_after\";i:68215;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3426;s:11:\"size_before\";i:123494;s:10:\"size_after\";i:120068;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3531;s:11:\"size_before\";i:204404;s:10:\"size_after\";i:200873;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:14401;s:10:\"size_after\";i:13197;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2404;s:11:\"size_before\";i:66229;s:10:\"size_after\";i:63825;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1254;s:11:\"size_before\";i:16109;s:10:\"size_after\";i:14855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1539;s:11:\"size_before\";i:24178;s:10:\"size_after\";i:22639;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3434;s:11:\"size_before\";i:123897;s:10:\"size_after\";i:120463;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:25404;s:10:\"size_after\";i:23868;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:8246;s:11:\"size_before\";i:233661;s:10:\"size_after\";i:225415;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.140000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:3548;s:11:\"size_before\";i:165994;s:10:\"size_after\";i:162446;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:3159;s:11:\"size_before\";i:105369;s:10:\"size_after\";i:102210;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1917;s:11:\"size_before\";i:34196;s:10:\"size_after\";i:32279;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4133,1720,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.37597813018450931821234917151741683483123779296875;s:5:\"bytes\";i:78180;s:11:\"size_before\";i:1786572;s:10:\"size_after\";i:1708392;s:4:\"time\";d:0.8400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1069;s:11:\"size_before\";i:14818;s:10:\"size_after\";i:13749;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:4466;s:11:\"size_before\";i:105826;s:10:\"size_after\";i:101360;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:861;s:11:\"size_before\";i:7009;s:10:\"size_after\";i:6148;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:4540;s:11:\"size_before\";i:103582;s:10:\"size_after\";i:99042;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8994;s:11:\"size_before\";i:225664;s:10:\"size_after\";i:216670;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1373;s:11:\"size_before\";i:22020;s:10:\"size_after\";i:20647;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:5534;s:11:\"size_before\";i:119443;s:10:\"size_after\";i:113909;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1519;s:11:\"size_before\";i:23999;s:10:\"size_after\";i:22480;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1961;s:11:\"size_before\";i:36507;s:10:\"size_after\";i:34546;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:7847;s:11:\"size_before\";i:194777;s:10:\"size_after\";i:186930;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1861;s:11:\"size_before\";i:34501;s:10:\"size_after\";i:32640;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:18766;s:11:\"size_before\";i:418219;s:10:\"size_after\";i:399453;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:10349;s:11:\"size_before\";i:270963;s:10:\"size_after\";i:260614;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:6701;s:11:\"size_before\";i:162329;s:10:\"size_after\";i:155628;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2339;s:11:\"size_before\";i:46915;s:10:\"size_after\";i:44576;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4129,1720,'_wp_attached_file','2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg'),(4130,1720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1974;s:4:\"file\";s:62:\"2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-778x1024.jpg\";s:5:\"width\";i:778;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-768x1011.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1011;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:64:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-1167x1536.jpg\";s:5:\"width\";i:1167;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:64:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-1080x1421.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:64:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:64:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-1280x1684.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:63:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-980x1290.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:62:\"Marvelous-Moment-Headshot-Release-IMG_0688-1500px2-480x632.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4144,1660,'_et_pb_excluded_global_options','[]'),(4855,71,'_et_dynamic_cached_shortcodes','a:10:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:11:\"et_pb_blurb\";i:5;s:12:\"et_pb_button\";i:6;s:10:\"et_pb_menu\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:10:\"et_pb_text\";i:9;s:11:\"et_pb_video\";}'),(4856,71,'_et_dynamic_cached_attributes','a:3:{s:9:\"font_icon\";a:1:{i:0;s:7:\"%%188%%\";}s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x45;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4857,71,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:63:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_243eb40ded76d76b9b451e0dd5066f62\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:23:\"section_divider_enabled\";b:1;}s:42:\"et_pb_row_b9c256c8d094d85e03511cb080861b0d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d8631e22096bdaafc09ff1bcaf870d98\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f8b7da356dbc6ec5729d7075eef71b4b\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d73bca0c1d24d8a5cd5bada653ef9116\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_09dd73fc0bd0139fb24e27257a2f7919\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ce649c3bfd24ca0bbef8104123e54843\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f5afcbabeb0e1b4c1f42d60dfc96b02e\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_2cb3fcc8e4ae8a9da9e0bd9d9eee872b\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_0d6c28b3b5c569255fcc6f301799fb38\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_86e4f9983f55f41cfb9b94668e3e670a\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1eff72345cfa64da2ae09846a91a0939\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_6f7aec1a739eb4a82e6d54a326da7fac\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_e551dc3e2e1200c0e6b58f7938d5d05b\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_a07c7207ecdb32be2f72e09daea37753\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_50c232ae4d1c704fa2499b3e866c983e\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_5a0bc0a6547c2d2e28db811ed67291dc\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_412d5147d1d8641f378be56e31664043\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_163e76066acbba05418c6ba66b46382b\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_65e4030c31321528cf526cf11b4c01e2\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_07e9eb7fa3f37ea09ef86a313edc6f78\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_325814384e397222a4c3c063f1f83201\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_e77448c500d934c8cd25ae892caa1ef2\";a:9:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_ec49e8e3578226dbf0df6dcd058da8ad\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_3b690b4f22e99a19f30cc721a57bb6ea\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0a6907fbbfceb430000996e2092ab0fa\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_fb8748d19aba5bbd8f99966bae23310a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_10b9a986b9b341c34f253ad5b24c4c58\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1f7752ded89b3353fd6df0a25d9e8b0d\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_55ac0c2a592e1821c256d4aacdf6360c\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_9c861b4049cabc80283735fbedc94dcb\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_3d9a63f869b2fc824cc53fc26efe7376\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4608a43141f2f9b2542631660131163d\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_f73b80e067c60fbf687133deee496802\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_e379298c7dcb1df0ef1715c394720160\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_627a99a8b662a4fc1cbe94e5dea2cfed\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_88ac45df7261d287b8c30ee24efe12ae\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7865c987715b42ceaedd3cbfdddc021e\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4a8e0ff043b6800f3d7e1240f0eeaa45\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6c65dd1de5edaa28011e191ac078d0c3\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(4858,1188,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:11:\"et_pb_image\";i:2;s:18:\"et_pb_contact_form\";i:3;s:19:\"et_pb_contact_field\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:12:\"et_pb_button\";i:8;s:13:\"et_pb_gallery\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";i:12;s:11:\"et_pb_video\";}'),(4859,1188,'_et_dynamic_cached_attributes','a:4:{s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:11:\"button_icon\";a:2:{i:0;s:17:\"&#x45;||divi||400\";i:1;s:17:\"&#x4e;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4860,1188,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4861,1188,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:48:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_31c8f2f6758718ff196b4bae7b6b9437\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_99d66257d24b676cd909be61084adbfe\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_cb0dc00d1a912c5e8562af8370288d0d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6217953db4e07775dc452d6952f958e1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bb10f106bc690e036d90299949f1d351\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_07b28ce88e4ca895040a3337518573cf\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_99e256fb2fd2e00eb09f68ca8b382bde\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_fe0e3d31a50757752dd8f550c76d9747\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_gallery_005092c01773b06747b734e1cbffd533\";a:8:{s:4:\"glde\";a:9:{s:19:\"hover_overlay_color\";s:21:\"rgba(255,255,255,0.9)\";s:15:\"title_font_size\";s:2:\"16\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"caption_font_size\";s:2:\"14\";s:22:\"caption_letter_spacing\";s:3:\"0px\";s:19:\"caption_line_height\";s:4:\"18px\";s:20:\"pagination_font_size\";s:4:\"16px\";s:22:\"pagination_line_height\";s:3:\"1em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fb79c68cbd1520008b821cdeb3999a3b\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e714b781e1937a74029a7bf6ee00b702\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1d4aa49bf5f77af3fa430761c93db17f\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a73a6bef4f90ffdb48b9030ae3b0952d\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bc2ee2cd864a96bd7d7af480d007cb0c\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2ae438c68a8fa8dc80a61decc5cc2efd\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bbc8c5d2c0901838f7b2cb509afa2f23\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_28fa0bdb261a8247a3cc965081709d26\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_3774df33a9a2f12fdfcce3c97abed0ba\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(4135,1723,'_wp_attached_file','2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg'),(4136,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2094;s:4:\"file\";s:51:\"2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Marvelous-Time-Release-IMG_0696-1500px8-734x1024.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Marvelous-Time-Release-IMG_0696-1500px8-768x1072.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1072;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"Marvelous-Time-Release-IMG_0696-1500px8-1100x1536.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"Marvelous-Time-Release-IMG_0696-1500px8-1467x2048.jpg\";s:5:\"width\";i:1467;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:52:\"Marvelous-Time-Release-IMG_0696-1500px8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"Marvelous-Time-Release-IMG_0696-1500px8-1080x1508.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:53:\"Marvelous-Time-Release-IMG_0696-1500px8-1500x1800.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:53:\"Marvelous-Time-Release-IMG_0696-1500px8-1280x1787.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1787;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:52:\"Marvelous-Time-Release-IMG_0696-1500px8-980x1368.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:51:\"Marvelous-Time-Release-IMG_0696-1500px8-480x670.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{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\";}}'),(4137,1723,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.37306084598040900601745306630618870258331298828125;s:5:\"bytes\";i:100255;s:11:\"size_before\";i:2292559;s:10:\"size_after\";i:2192304;s:4:\"time\";d:3.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1070;s:11:\"size_before\";i:14894;s:10:\"size_after\";i:13824;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4887;s:11:\"size_before\";i:106697;s:10:\"size_after\";i:101810;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:899;s:11:\"size_before\";i:7226;s:10:\"size_after\";i:6327;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5449;s:11:\"size_before\";i:115577;s:10:\"size_after\";i:110128;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9513;s:11:\"size_before\";i:224423;s:10:\"size_after\";i:214910;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:15157;s:11:\"size_before\";i:394459;s:10:\"size_after\";i:379302;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:21:\"et-pb-post-main-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1435;s:11:\"size_before\";i:21614;s:10:\"size_after\";i:20179;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:31:\"et-pb-post-main-image-fullwidth\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:5346;s:11:\"size_before\";i:115510;s:10:\"size_after\";i:110164;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:21:\"et-pb-portfolio-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1544;s:11:\"size_before\";i:23706;s:10:\"size_after\";i:22162;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:28:\"et-pb-portfolio-module-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1959;s:11:\"size_before\";i:36394;s:10:\"size_after\";i:34435;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:28:\"et-pb-portfolio-image-single\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:9158;s:11:\"size_before\";i:216738;s:10:\"size_after\";i:207580;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:35:\"et-pb-gallery-module-image-portrait\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1937;s:11:\"size_before\";i:37586;s:10:\"size_after\";i:35649;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:37:\"et-pb-post-main-image-fullwidth-large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:19196;s:11:\"size_before\";i:443761;s:10:\"size_after\";i:424565;s:4:\"time\";d:0.810000000000000053290705182007513940334320068359375;}s:32:\"et-pb-image--responsive--desktop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12069;s:11:\"size_before\";i:301166;s:10:\"size_after\";i:289097;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;}s:31:\"et-pb-image--responsive--tablet\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8055;s:11:\"size_before\";i:180452;s:10:\"size_after\";i:172397;s:4:\"time\";d:0.25;}s:30:\"et-pb-image--responsive--phone\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2581;s:11:\"size_before\";i:52356;s:10:\"size_after\";i:49775;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4882,1137,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:11:\"et_pb_image\";}'),(4872,1483,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:11:\"et_pb_image\";}'),(4873,1483,'_et_dynamic_cached_attributes','a:1:{s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x4e;||divi||400\";}}'),(4874,1483,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4875,1518,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:11:\"et_pb_image\";}'),(4876,1518,'_et_dynamic_cached_attributes','a:1:{s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x4e;||divi||400\";}}'),(4877,1518,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4878,1646,'_et_dynamic_cached_shortcodes','a:15:{i:0;s:18:\"et_pb_column_inner\";i:1;s:33:\"et_pb_social_media_follow_network\";i:2;s:18:\"et_pb_contact_form\";i:3;s:19:\"et_pb_contact_field\";i:4;s:13:\"et_pb_section\";i:5;s:9:\"et_pb_row\";i:6;s:12:\"et_pb_column\";i:7;s:15:\"et_pb_row_inner\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:11:\"et_pb_image\";i:11;s:10:\"et_pb_menu\";i:12;s:25:\"et_pb_social_media_follow\";i:13;s:10:\"et_pb_text\";i:14;s:11:\"et_pb_video\";}'),(4879,1646,'_et_dynamic_cached_attributes','a:5:{s:11:\"button_icon\";a:3:{i:0;s:17:\"&#x24;||divi||400\";i:1;s:17:\"&#x45;||divi||400\";i:2;s:17:\"&#x4e;||divi||400\";}s:15:\"animation_style\";a:2:{i:0;s:5:\"slide\";i:1;s:4:\"fold\";}s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4880,1646,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4881,1646,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:76:{s:46:\"et_pb_section_f1e55be69b6ee0f9a0d869851a0a6c59\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_dbffd6942b00838636a506797f4edb28\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7520ca3cfd77b1d0c711dd6e416a4fe5\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_237562ef91db45999507c7eabd9ea4dc\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_2363efdcc37ab1598f3ce47fe0d278b4\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_4ecadd824f182b39435ba053c387881a\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b7b0b8fb03f83fd1a57486975cda8aa5\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_ab6fbb396de797b02af48c6c4b5f4a6f\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4fa66132b46c658e1e8aeab5769ad513\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_eb776b7c4f92cf7dbcf9acc3925ed92c\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7b0255ef16be6063fb11148949fc136e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_67c967fc9b551e18c8204ce46c856d14\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_8cca5341a23ca9947a72a43fde6857a1\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1d27bf03ddf2ebd780fa11fc1282adad\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_3b362b9321c32fd4c09a5561a6348c7e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d82f153210d2dfbd9ccdc1dec31521c1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_1c28cdcafbf1457b2808a51e1d80b93c\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_fd3f96a36833ec765262650169a18dbd\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d796d86b7fca2c34b20e0dfc2005810d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_290a23a0f5fc70e6c237d398e7ab838c\";a:9:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_d1be04807a2445ff606cb4f8393c5efe\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_417d5ef1c69cc448aa8e2f0cafb1bad0\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_1bf3a2065c598cc089923a5b66c411cd\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_8a30af60e96f519acb632c6c7f73c260\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_b231e2537f2f90661f0a4f808474ea0e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_9d4d6928dc30044bb587ff298719fb84\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_fa9cfcb1db94d588cd3f5f09a51ca19d\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d621c666cdb0b8dc5fb93fd2155480a9\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_5fb226fe300e9582f3945efa406b32b8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2eeb02f9bafd24fe4da1b1162d8200e9\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d327c8251e5cf9e3cd1abbac24e35d6a\";a:7:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_592dd9e84273d5b05dd5f82b76952d5f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_36db163b113b006ef10ecc610e78dc2d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_3e741b7a26bf089a39743f8e177728d3\";a:5:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_dd8c1fe15a9b8ccd1c6c9cbad4caeb86\";a:8:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_b7e95656e6f38c45e1bb707d9ffee9a0\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_eac9a4cc64bdf18d9a67d5c82bf0fa9e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_a282f9f034eec760ac6b26c1c5dd5cbd\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d03d41546411d01685cb1eaa80c011f9\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e714b781e1937a74029a7bf6ee00b702\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_1d4aa49bf5f77af3fa430761c93db17f\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a73a6bef4f90ffdb48b9030ae3b0952d\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bc2ee2cd864a96bd7d7af480d007cb0c\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_2ae438c68a8fa8dc80a61decc5cc2efd\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_bbc8c5d2c0901838f7b2cb509afa2f23\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_28fa0bdb261a8247a3cc965081709d26\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_3774df33a9a2f12fdfcce3c97abed0ba\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(4883,1137,'_et_dynamic_cached_attributes','a:1:{s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x4e;||divi||400\";}}'),(4884,1137,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4272,1646,'_et_builder_dynamic_assets_loading_attr_threshold','17'),(4841,214,'_et_dynamic_cached_shortcodes','a:10:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:12:\"et_pb_button\";i:5;s:11:\"et_pb_image\";i:6;s:10:\"et_pb_menu\";i:7;s:25:\"et_pb_social_media_follow\";i:8;s:10:\"et_pb_text\";i:9;s:11:\"et_pb_video\";}'),(4842,214,'_et_dynamic_cached_attributes','a:3:{s:15:\"animation_style\";a:2:{i:0;s:4:\"zoom\";i:1;s:5:\"slide\";}s:11:\"button_icon\";a:1:{i:0;s:17:\"&#x45;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4843,214,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4844,214,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:33:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5935622039af390cf863d46ccde535bf\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_47ec2c44e23650af94827f579b86420e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5edbdeff5d298d964a807df0dc10373b\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_857a6cff3c7ce35a51ea025da7430381\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_81782e7c6660375174c5fe8927c43cb2\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1b8d159b7cd86f4446cc175560cb079d\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_bb9ac3f26a1f18892a6f2aff26269c35\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b63081707b97c4b70a0d89499c0f1d37\";a:7:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4b22e08a65014c20db1b8f1fbba04f9a\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fb79c68cbd1520008b821cdeb3999a3b\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(4845,79,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:15;s:21:\"et_pb_countdown_timer\";i:30;s:11:\"et_pb_image\";i:49;s:10:\"et_pb_text\";}'),(4846,79,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:3:{i:0;s:5:\"slide\";i:1;s:4:\"roll\";i:2;s:6:\"bounce\";}}'),(4847,25,'_et_dynamic_cached_shortcodes','a:13:{i:0;s:33:\"et_pb_social_media_follow_network\";i:1;s:18:\"et_pb_contact_form\";i:2;s:19:\"et_pb_contact_field\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:11:\"et_pb_blurb\";i:7;s:12:\"et_pb_button\";i:8;s:11:\"et_pb_image\";i:9;s:10:\"et_pb_menu\";i:10;s:25:\"et_pb_social_media_follow\";i:11;s:10:\"et_pb_text\";i:12;s:11:\"et_pb_video\";}'),(4848,25,'_et_dynamic_cached_attributes','a:5:{s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:4:\"fold\";}s:9:\"font_icon\";a:1:{i:0;s:19:\"&#xe044;||divi||400\";}s:11:\"button_icon\";a:2:{i:0;s:17:\"&#x45;||divi||400\";i:1;s:17:\"&#x4e;||divi||400\";}s:14:\"social_network\";a:2:{i:0;s:8:\"facebook\";i:1;s:9:\"instagram\";}}'),(4849,25,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"enable_all_character_sets\":\"false\"}\";}'),(4850,25,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.19.2\",\"wp\":\"5.8.6\",\"tb\":[],\"wpe\":[]}\";i:1;a:96:{s:46:\"et_pb_section_d3d3a0a8a09e6be3540cf455feffff5b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_6ee8e45d16a81ab4811977056ec9541d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_adebedfd2e10a87eaf265e75361e0508\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0fbb279fe04026141bd8f4521d22bed4\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3b45c21679ea729300f37ca68d590fbf\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_984959c91de82c32944a4b713d466b7f\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_1826d553c60f7782af194d2a4fcf8d71\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5e8219aef6d337bb568fc974841d8b8a\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7297a0505d0b17e3feba4eeb7bbb452f\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_2cdde23b8cf6ef5b380fd369249e71e9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_56f0bd627b05011ae8c9e8628b9a3728\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_3c95db1a4e38a726ab8f0764a9a282b9\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_22bd2b4805039868e6310e8721fedb69\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_6e04306b2d46b1241cdfdbe97b137728\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_aaa3485b1759fa4bd5335ec323ef8bc2\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_0ee0727cddf0de24a7cc9100c45b575c\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_666a88ab29230151839fea5669d41343\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b108018e07028d9e01e6db31d2157c7b\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_360ba19f63c54271fb4f040d4446ecfa\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_66a469a498ad7151150dc84da899b9d6\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_47e8a4c098a480f2f905d18e0aec51e2\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_4e2022a97cb6020437e7ca283f65d247\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_94391c37322e5df69dfcc95a6759c8e0\";a:7:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f0e27eeff7993fb7c3387e5be4440253\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_bea8352534f1693653672113a08a3651\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_268f3622e09869a031a23a27e839d06d\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_cd386afa545859cc9102ab7355c70803\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_36557047ab437ba8e98c4488cafc6509\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_5fb09422c99732ad597bd64aa9ca20d6\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_8ed32ec6ed30d904a3a2e6bd6f48a073\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_967fd34f5114a8fa25dc13b40f8b4edc\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_2afeb0ec431b1bd1c5c757a2d56c2063\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ecacb811263d52d7ff9879a78a1d5423\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_42530d61b7f56fda0fbcff3aea23be2e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_df25a2ddcc7f948f95f202f8bc4657cf\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_a69ed09829b6e3b57de4bfb384de2a81\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_82bccc340d34d03fe2cab110896dc9e6\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e245f8241a6c66cd85078175c70272d2\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d182651c8541bf684036729a42e48c77\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_656d54c2f764a2395f503a2f0092e310\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1582963a68f94a643bea791887f323e5\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_632a6b3003707729aa021ac8e00e8a8a\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_4be0c578e296a70726c098da90cc5e85\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_33bd8ddd1bbb2e8f3dc0c37d0940d97f\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_125587e1c97a6f15024572c95a08d537\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_1114b82aef52a067f187d651e6f07c99\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_478cdde1c4db144e79fc4bef65cf688d\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_fa2529d7121e4205067e3d0a1ea2887a\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_0ad4962db33044e35b0d8c4b490e44fb\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f69dcf8b89a64c8d36bfc0cc1ddeebd1\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c4ac5f1c813dd5a5d42a16413b89ddc8\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_349d57c07abac03aee57a3c7eda09959\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_59d4f02fb101113277d5b1530162870e\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_73fb9b13fae375089a1a0a122b17b75f\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_a8c9d611a62c136dbbb90ad43252642f\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_75855dc7dfab073a6657fc5d32b4326e\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_9d6752276e7a390a6e8b63a3566b8a41\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_be1144b9debc6e26a2bbaeee9ff89a09\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_345b0636ac0a3ddcf08ae69dcb4216a8\";a:10:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:3:\"tra\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_b901b5a60112b65f0e5f0a747499d23b\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_68b23c3155b4a4f81e963a39d8e2ea4e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_4283651de72ef5406c029868fe3fee0a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_d6218263dec9f4a30f305f0c4d89cb20\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fb79c68cbd1520008b821cdeb3999a3b\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_45c19eb75d5a788d6d67247a3a914437\";a:9:{s:3:\"bor\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_03d1f78ef13a8fb5a29a5da5358ae5ee\";a:8:{s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_286936d70f41840ad583a1d28ec17a15\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_369b572e0539e94395946fed3868f80d\";a:12:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:5:\"hmare\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a5f2edb1f25b93000ff9745fac3e216e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f55407f7529f649f1f1ccb58fb7052b6\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_71fe8f14c1f4fabb3182681f009fcf7f\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_433acb265d7ca590fa41e96ebcc36e68\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c4985da02d072e36fe4e03cebe3a5078\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f67090de448af293188bed93562d3f05\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_1e2cbcaa55d3883439c5a12fa2a815fb\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a594c66753b348b62805f0d95c9a1617\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_a72d7dea6ef14bf4e04515415ca75f5f\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:66:\"et_pb_social_media_follow_network_1cebb8df64b8789ad1d55f5d7ba9b316\";a:4:{s:4:\"tesh\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:58:\"et_pb_social_media_follow_e82e36f56cc500363db7610b761de595\";a:9:{s:4:\"tesh\";b:1;s:5:\"hhere\";b:1;s:5:\"hmire\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_5d6e3698cbcaf102282de835c8580d3f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7e6f4d14786c0ebc673cb0b41ffb5eb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_video_0784682c37b5466447d081d5209d48d8\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c1ec15ce178fb4350463bca6a2adebfb\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_f1909d51c4dc88d044768c4f79038392\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_d9f51f9157390ac047d01e6fc6c9dd94\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_42ac27c51b76d000fcdb8bec135fd8ee\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_f01c0dfaea9bba4692fd81d2db725ba4\";a:11:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_ea0ba678c23789107a773bd6ac02293a\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_495dc91d38a27d7a249cb9249bf86433\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_a6208905ad0ec3a61c6fd4642d6485fd\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_d0fa39cc20085d7e0b8252f295aa7c22\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_c8737302e0c01301d486861ceb2895bb\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_305d16f76ce6ec331c22e0c73abdbf35\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_724d42267f69dc8f68fc84448864e916\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_9b9e7ff0125f074f610711a84affca38\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_67cd6e22e677281e5cddf9b376134ade\";a:5:{s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}');
/*!40000 ALTER TABLE `wp1j_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_posts`
--

DROP TABLE IF EXISTS `wp1j_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) 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=MyISAM AUTO_INCREMENT=1783 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_posts`
--

LOCK TABLES `wp1j_posts` WRITE;
/*!40000 ALTER TABLE `wp1j_posts` DISABLE KEYS */;
INSERT INTO `wp1j_posts` VALUES (1,1,'2021-09-10 01:08:58','2021-09-10 01:08:58','<!-- 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','','','2021-09-10 01:08:58','2021-09-10 01:08:58','',0,'https://flaphotography.com/?p=1',0,'post','',1),(560,1,'2021-09-18 01:14:15','2021-09-18 01:14:15','','','','inherit','open','closed','','monique-smile_mg_9348-3000px2-new','','','2022-07-12 15:34:35','2022-07-12 15:34:35','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW.jpg',0,'attachment','image/jpeg',0),(9,1,'2021-09-10 01:18:22','2021-09-10 01:18:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','publish','closed','closed','','corporate','','','2022-11-09 17:15:02','2022-11-09 17:15:02','',0,'https://flaphotography.com/?page_id=9',0,'page','',0),(10,1,'2021-09-10 01:16:09','2021-09-10 01:16:09','','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-10 01:16:09','2021-09-10 01:16:09','',9,'https://flaphotography.com/?p=10',0,'revision','',0),(11,1,'2021-09-10 01:16:23','2021-09-10 01:16:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-10 01:16:23','2021-09-10 01:16:23','',9,'https://flaphotography.com/?p=11',0,'revision','',0),(13,1,'2021-09-10 01:16:51','2021-09-10 01:16:51','','Requel_MG_9336-2500px','','inherit','open','closed','','requel_mg_9336-2500px','','','2021-09-10 01:16:51','2021-09-10 01:16:51','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg',0,'attachment','image/jpeg',0),(18,1,'2021-09-10 01:17:37','2021-09-10 01:17:37','','Alicia_MG_9295-HEAD-2500PX','','inherit','open','closed','','alicia_mg_9295-head-2500px','','','2021-09-10 01:17:37','2021-09-10 01:17:37','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg',0,'attachment','image/jpeg',0),(19,1,'2021-09-10 01:17:45','2021-09-10 01:17:45','','Communication-team-CROP_MG_9302-2500px','','inherit','open','closed','','communication-team-crop_mg_9302-2500px','','','2021-09-10 01:17:45','2021-09-10 01:17:45','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg',0,'attachment','image/jpeg',0),(20,1,'2021-09-10 01:17:49','2021-09-10 01:17:49','','Tina_MG_9256-HEAD-1500PX','','inherit','open','closed','','tina_mg_9256-head-1500px','','','2021-09-10 01:17:49','2021-09-10 01:17:49','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg',0,'attachment','image/jpeg',0),(21,1,'2021-09-10 01:17:53','2021-09-10 01:17:53','','FotoOPEN-LOGO-VERS-3','','inherit','open','closed','','fotoopen-logo-vers-3','','','2021-09-10 01:17:53','2021-09-10 01:17:53','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png',0,'attachment','image/png',0),(22,1,'2021-09-10 01:17:55','2021-09-10 01:17:55','','LOGO-FLAPSTART-ORG-230px','','inherit','open','closed','','logo-flapstart-org-230px','','','2021-09-10 01:17:55','2021-09-10 01:17:55','',0,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png',0,'attachment','image/png',0),(968,1,'2021-12-08 17:31:43','2021-12-08 17:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 17:31:43','2021-12-08 17:31:43','',9,'https://flaphotography.com/?p=968',0,'revision','',0),(546,1,'2021-09-17 12:04:13','2021-09-17 12:04:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-17 12:04:13','2021-09-17 12:04:13','',9,'https://flaphotography.com/?p=546',0,'revision','',0),(23,1,'2021-09-10 01:18:22','2021-09-10 01:18:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#2f81c3\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2f81c3\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\" title_text=\"Tina_MG_9256-HEAD-1500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-10 01:18:22','2021-09-10 01:18:22','',9,'https://flaphotography.com/?p=23',0,'revision','',0),(25,1,'2021-09-10 01:46:18','2021-09-10 01:46:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','publish','closed','closed','','couples-family-sessions','','','2022-03-25 00:28:23','2022-03-25 00:28:23','',0,'https://flaphotography.com/?page_id=25',0,'page','',0),(26,1,'2021-09-10 01:26:53','2021-09-10 01:26:53','','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-10 01:26:53','2021-09-10 01:26:53','',25,'https://flaphotography.com/?p=26',0,'revision','',0),(27,1,'2021-09-10 01:27:43','2021-09-10 01:27:43','','Young-X-Emperor-IMG_0010-3000px-scaled-1','','inherit','open','closed','','young-x-emperor-img_0010-3000px-scaled-1','','','2021-09-10 01:27:43','2021-09-10 01:27:43','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(28,1,'2021-09-10 01:27:51','2021-09-10 01:27:51','','Ash-the-king-and-queen-IMG_0001_3000px-scaled-1','','inherit','open','closed','','ash-the-king-and-queen-img_0001_3000px-scaled-1','','','2021-09-10 01:27:51','2021-09-10 01:27:51','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(29,1,'2021-09-10 01:28:05','2021-09-10 01:28:05','','ASH-The-Queen-IMG_0008_1-3000px-scaled-1','','inherit','open','closed','','ash-the-queen-img_0008_1-3000px-scaled-1','','','2021-09-10 01:28:05','2021-09-10 01:28:05','',0,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(30,1,'2021-09-10 01:28:13','2021-09-10 01:28:13','','Young-x-face-IMG_0002_1-No-title-3000px-scaled-1','','inherit','open','closed','','young-x-face-img_0002_1-no-title-3000px-scaled-1','','','2021-09-10 01:28:13','2021-09-10 01:28:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(31,1,'2021-09-10 01:28:24','2021-09-10 01:28:24','','Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1','','inherit','open','closed','','ash-and-x-the-king-son-img_0022-3000px-scaled-1','','','2021-09-10 01:28:24','2021-09-10 01:28:24','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(32,1,'2021-09-10 01:40:34','2021-09-10 01:40:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-10 01:40:34','2021-09-10 01:40:34','',25,'https://flaphotography.com/?p=32',0,'revision','',0),(33,1,'2021-09-10 01:41:13','2021-09-10 01:41:13','','Young-X-Emperor-IMG_0010-3000px-scaled-2','','inherit','open','closed','','young-x-emperor-img_0010-3000px-scaled-2','','','2021-09-10 01:41:13','2021-09-10 01:41:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2.jpg',0,'attachment','image/jpeg',0),(34,1,'2021-09-10 01:41:20','2021-09-10 01:41:20','','Ash-the-king-and-queen-IMG_0001_3000px-scaled-2','','inherit','open','closed','','ash-the-king-and-queen-img_0001_3000px-scaled-2','','','2021-09-10 01:41:20','2021-09-10 01:41:20','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2.jpg',0,'attachment','image/jpeg',0),(35,1,'2021-09-10 01:41:29','2021-09-10 01:41:29','','ASH-The-Queen-IMG_0008_1-3000px-scaled-2','','inherit','open','closed','','ash-the-queen-img_0008_1-3000px-scaled-2','','','2021-09-10 01:41:29','2021-09-10 01:41:29','',0,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2.jpg',0,'attachment','image/jpeg',0),(36,1,'2021-09-10 01:41:36','2021-09-10 01:41:36','','Young-x-face-IMG_0002_1-No-title-3000px-scaled-2','','inherit','open','closed','','young-x-face-img_0002_1-no-title-3000px-scaled-2','','','2021-09-10 01:41:36','2021-09-10 01:41:36','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2.jpg',0,'attachment','image/jpeg',0),(37,1,'2021-09-10 01:41:45','2021-09-10 01:41:45','','Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2','','inherit','open','closed','','ash-and-x-the-king-son-img_0022-3000px-scaled-2','','','2021-09-10 01:41:45','2021-09-10 01:41:45','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2.jpg',0,'attachment','image/jpeg',0),(817,1,'2021-10-21 13:42:56','2021-10-21 13:42:56','','','','inherit','open','closed','','ash-gaze-img_0003_3-2600-freq','','','2022-07-12 15:33:22','2022-07-12 15:33:22','',0,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ.jpg',0,'attachment','image/jpeg',0),(39,1,'2021-09-10 01:42:13','2021-09-10 01:42:13','','Young-X-Madness-IMG_0016-3000px-2','','inherit','open','closed','','young-x-madness-img_0016-3000px-2','','','2021-09-10 01:42:13','2021-09-10 01:42:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2.jpg',0,'attachment','image/jpeg',0),(40,1,'2021-09-10 01:42:23','2021-09-10 01:42:23','','The-set-ash-sitting-IMG_0001_4-3000px-scaled-1','','inherit','open','closed','','the-set-ash-sitting-img_0001_4-3000px-scaled-1','','','2021-09-10 01:42:23','2021-09-10 01:42:23','',0,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(41,1,'2021-09-10 01:42:34','2021-09-10 01:42:34','','ANDREW-BOSS-IMG_2437-2000PX','','inherit','open','closed','','andrew-boss-img_2437-2000px','','','2021-09-10 01:42:34','2021-09-10 01:42:34','',0,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX.jpg',0,'attachment','image/jpeg',0),(42,1,'2021-09-10 01:42:41','2021-09-10 01:42:41','','JOSIAH-IMG_2439-2000PX-FLASH','','inherit','open','closed','','josiah-img_2439-2000px-flash','','','2021-09-10 01:42:41','2021-09-10 01:42:41','',0,'https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg',0,'attachment','image/jpeg',0),(43,1,'2021-09-10 01:43:00','2021-09-10 01:43:00','','BABIES-IMG_2506-2000PX','','inherit','open','closed','','babies-img_2506-2000px','','','2021-09-10 01:43:00','2021-09-10 01:43:00','',0,'https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg',0,'attachment','image/jpeg',0),(44,1,'2021-09-10 01:43:03','2021-09-10 01:43:03','','STEPHANIE-IMG_2526-2000PX7-scaled-1','','inherit','open','closed','','stephanie-img_2526-2000px7-scaled-1','','','2021-09-10 01:43:03','2021-09-10 01:43:03','',0,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1.jpg',0,'attachment','image/jpeg',0),(45,1,'2021-09-10 01:43:12','2021-09-10 01:43:12','','FlowCouple-Glass-IMG_0400-2500px-2-scaled-1','','inherit','open','closed','','flowcouple-glass-img_0400-2500px-2-scaled-1','','','2021-09-10 01:43:12','2021-09-10 01:43:12','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg',0,'attachment','image/jpeg',0),(46,1,'2021-09-10 01:43:18','2021-09-10 01:43:18','','Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1','','inherit','open','closed','','thairu-flow-softbox-tethering-2500px-scaled-1','','','2021-09-10 01:43:18','2021-09-10 01:43:18','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg',0,'attachment','image/jpeg',0),(47,1,'2021-09-10 01:43:25','2021-09-10 01:43:25','','FLOW-COUPLE-IMG_0415-2500PX-2','','inherit','open','closed','','flow-couple-img_0415-2500px-2','','','2021-09-10 01:43:25','2021-09-10 01:43:25','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg',0,'attachment','image/jpeg',0),(48,1,'2021-09-10 01:43:47','2021-09-10 01:43:47','','FLOW-THAIRU-LOVE-IMG_0414-2500PX-2','','inherit','open','closed','','flow-thairu-love-img_0414-2500px-2','','','2021-09-10 01:43:47','2021-09-10 01:43:47','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg',0,'attachment','image/jpeg',0),(49,1,'2021-09-10 01:43:55','2021-09-10 01:43:55','','Lovers-shot-IMG_9632-3000px-scaled-1','','inherit','open','closed','','lovers-shot-img_9632-3000px-scaled-1','','','2021-09-10 01:43:55','2021-09-10 01:43:55','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1.jpg',0,'attachment','image/jpeg',0),(50,1,'2021-09-10 01:44:03','2021-09-10 01:44:03','','Dad-mom-Flow-kiss-IMG_0486-2500px-3','','inherit','open','closed','','dad-mom-flow-kiss-img_0486-2500px-3','','','2021-09-10 01:44:03','2021-09-10 01:44:03','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg',0,'attachment','image/jpeg',0),(51,1,'2021-09-10 01:44:08','2021-09-10 01:44:08','','Thairu-mom-IMG_0468-2500px2-scaled-1','','inherit','open','closed','','thairu-mom-img_0468-2500px2-scaled-1','','','2021-09-10 01:44:08','2021-09-10 01:44:08','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg',0,'attachment','image/jpeg',0),(52,1,'2021-09-10 01:44:15','2021-09-10 01:44:15','','Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1','','inherit','open','closed','','q-thairu-cross-img_0423-2500px-scaled-1','','','2021-09-10 01:44:15','2021-09-10 01:44:15','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg',0,'attachment','image/jpeg',0),(53,1,'2021-09-10 01:44:38','2021-09-10 01:44:38','','Thairu-Dad-IMG_0448-2500px-scaled-1','','inherit','open','closed','','thairu-dad-img_0448-2500px-scaled-1','','','2021-09-10 01:44:38','2021-09-10 01:44:38','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg',0,'attachment','image/jpeg',0),(69,1,'2021-09-10 02:02:44','2021-09-10 02:02:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#3842c1\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.77)\" background_color_gradient_end=\"rgba(54,37,186,0.8)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.27)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.19)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-10 02:02:44','2021-09-10 02:02:44','',61,'https://flaphotography.com/?p=69',0,'revision','',0),(720,1,'2021-10-12 22:20:17','2021-10-12 22:20:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-10-12 22:20:17','2021-10-12 22:20:17','',214,'https://flaphotography.com/?p=720',0,'revision','',0),(800,1,'2021-10-20 00:44:10','2021-10-20 00:44:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-10-20 00:44:10','2021-10-20 00:44:10','',214,'https://flaphotography.com/?p=800',0,'revision','',0),(61,1,'2021-09-10 02:01:34','2021-09-10 02:01:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" background_last_edited=\"on|phone\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$399 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-29px||-29px|false|true\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|-49px||-49px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|||-34px|false|false\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','publish','closed','closed','','fashion-modeling-sessions','','','2022-07-31 03:07:40','2022-07-31 03:07:40','',0,'https://flaphotography.com/?page_id=61',0,'page','',0),(62,1,'2021-09-10 02:01:25','2021-09-10 02:01:25','','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-10 02:01:25','2021-09-10 02:01:25','',61,'https://flaphotography.com/?p=62',0,'revision','',0),(63,1,'2021-09-10 02:01:34','2021-09-10 02:01:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-10 02:01:34','2021-09-10 02:01:34','',61,'https://flaphotography.com/?p=63',0,'revision','',0),(64,1,'2021-09-10 02:02:01','2021-09-10 02:02:01','','Set-Photography-2500px-scaled-1','','inherit','open','closed','','set-photography-2500px-scaled-1','','','2021-09-10 02:02:01','2021-09-10 02:02:01','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg',0,'attachment','image/jpeg',0),(65,1,'2021-09-10 02:02:08','2021-09-10 02:02:08','','Flow-Marvi-Spark_MG_8496-2500px','','inherit','open','closed','','flow-marvi-spark_mg_8496-2500px','','','2021-09-10 02:02:08','2021-09-10 02:02:08','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg',0,'attachment','image/jpeg',0),(66,1,'2021-09-10 02:02:13','2021-09-10 02:02:13','','Flow-presence_MG_8542-2500px','','inherit','open','closed','','flow-presence_mg_8542-2500px','','','2021-09-10 02:02:13','2021-09-10 02:02:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg',0,'attachment','image/jpeg',0),(68,1,'2021-09-10 02:02:26','2021-09-10 02:02:26','','Flow-Blue-Fade-2000px','','inherit','open','closed','','flow-blue-fade-2000px','','','2021-09-10 02:02:26','2021-09-10 02:02:26','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg',0,'attachment','image/jpeg',0),(952,1,'2021-12-06 11:54:23','2021-12-06 11:54:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $342.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||66px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 11:54:23','2021-12-06 11:54:23','',25,'https://flaphotography.com/?p=952',0,'revision','',0),(884,1,'2021-11-02 21:28:22','2021-11-02 21:28:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-11-02 21:28:22','2021-11-02 21:28:22','',25,'https://flaphotography.com/?p=884',0,'revision','',0),(418,1,'2021-09-13 15:38:26','2021-09-13 15:38:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-13 15:38:26','2021-09-13 15:38:26','',25,'https://flaphotography.com/?p=418',0,'revision','',0),(55,1,'2021-09-10 01:46:18','2021-09-10 01:46:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg\" title_text=\"JOSIAH-IMG_2439-2000PX-FLASH\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg\" title_text=\"BABIES-IMG_2506-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-10 01:46:18','2021-09-10 01:46:18','',25,'https://flaphotography.com/?p=55',0,'revision','',0),(71,1,'2021-09-10 02:04:04','2021-09-10 02:04:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"||12px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>WEDDING PHOTOGRAPHY</h1>\r\nMagnify the image with a click.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>SMALL PLAN $1,599</h1>\r[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>STANDARD PLAN $1,999</h1>\r[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>PREMIUM PLAN $2,599</h1>\r[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>\r[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\r\n<ul>\r\n 	<li>Outfit color change, $29 / image.</li>\r\n 	<li>Lipstick and finger nails color change (including toes), $29 / image.</li>\r\n 	<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.</li>\r\n 	<li>Background color change, $29 / image.</li>\r\n 	<li>Background replacement for a different scene, $45 / image.</li>\r\n 	<li>Facial dodging and burning, $19 / image.</li>\r\n</ul>\r[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','publish','closed','closed','','wedding-photography','','','2021-12-11 17:37:52','2021-12-11 17:37:52','',0,'https://flaphotography.com/?page_id=71',0,'page','',0),(72,1,'2021-09-10 02:03:37','2021-09-10 02:03:37','','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-09-10 02:03:37','2021-09-10 02:03:37','',71,'https://flaphotography.com/?p=72',0,'revision','',0),(73,1,'2021-09-10 02:03:45','2021-09-10 02:03:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-09-10 02:03:45','2021-09-10 02:03:45','',71,'https://flaphotography.com/?p=73',0,'revision','',0),(74,1,'2021-09-10 02:04:30','2021-09-10 02:04:30','','Wedding-couple-3-Sky-Replaced-1-scaled-1','','inherit','open','closed','','wedding-couple-3-sky-replaced-1-scaled-1','','','2021-09-10 02:04:30','2021-09-10 02:04:30','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(1100,1,'2021-12-11 17:37:52','2021-12-11 17:37:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"||12px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>WEDDING PHOTOGRAPHY</h1>\r\nMagnify the image with a click.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>SMALL PLAN $1,599</h1>\r[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>STANDARD PLAN $1,999</h1>\r[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>PREMIUM PLAN $2,599</h1>\r[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>\r[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\r\n<ul>\r\n 	<li>Outfit color change, $29 / image.</li>\r\n 	<li>Lipstick and finger nails color change (including toes), $29 / image.</li>\r\n 	<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.</li>\r\n 	<li>Background color change, $29 / image.</li>\r\n 	<li>Background replacement for a different scene, $45 / image.</li>\r\n 	<li>Facial dodging and burning, $19 / image.</li>\r\n</ul>\r[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-12-11 17:37:52','2021-12-11 17:37:52','',71,'https://flaphotography.com/?p=1100',0,'revision','',0),(429,1,'2021-09-13 23:06:36','2021-09-13 23:06:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\" custom_padding=\"||12px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>WEDDING PHOTOGRAPHY</h1>\r\nMagnify the image with a click.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>SMALL PLAN $1,599</h1>\r[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>STANDARD PLAN $1,999</h1>\r[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>PREMIUM PLAN $2,599</h1>\r[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>\r[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\r\n<ul>\r\n 	<li>Outfit color change, $29 / image.</li>\r\n 	<li>Lipstick and finger nails color change (including toes), $29 / image.</li>\r\n 	<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.</li>\r\n 	<li>Background color change, $29 / image.</li>\r\n 	<li>Background replacement for a different scene, $45 / image.</li>\r\n 	<li>Facial dodging and burning, $19 / image.</li>\r\n</ul>\r[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-09-13 23:06:36','2021-09-13 23:06:36','',71,'https://flaphotography.com/?p=429',0,'revision','',0),(77,1,'2021-09-10 02:05:05','2021-09-10 02:05:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]\r\n<h1>WEDDING PHOTOGRAPHY</h1>\r\nMagnify the image with a click.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]\r\n<h1>SMALL PLAN $1,599</h1>\r\n[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]\r\n<h1>STANDARD PLAN $1,999</h1>\r\n[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]\r\n<h1>PREMIUM PLAN $2,599</h1>\r\n[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]\r\n<h1>Standard Retouching Included</h1>\r\n[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]\r\n<h1>ADDITIONAL RETOUCHING</h1>\r\n<ul>\r\n 	<li>Outfit color change, $29 / image.</li>\r\n 	<li>Lipstick and finger nails color change (including toes), $29 / image.</li>\r\n 	<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.</li>\r\n 	<li>Background color change, $29 / image.</li>\r\n 	<li>Background replacement for a different scene, $45 / image.</li>\r\n 	<li>Facial dodging and burning, $19 / image.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES &amp; FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]\r\n\r\nServices\r\n\r\n[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples &amp; Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-09-10 02:05:05','2021-09-10 02:05:05','',71,'https://flaphotography.com/?p=77',0,'revision','',0),(76,1,'2021-09-10 02:04:56','2021-09-10 02:04:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>WEDDING PHOTOGRAPHY</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>SMALL PLAN $1,599</h1>[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour  extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>STANDARD PLAN $1,999</h1>[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour  extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>PREMIUM PLAN $2,599</h1>[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour  extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-09-10 02:04:56','2021-09-10 02:04:56','',71,'https://flaphotography.com/?p=76',0,'revision','',0),(79,1,'2021-09-10 02:07:43','2021-09-10 02:07:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>SORRY! THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-16 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','publish','closed','closed','','coming-soon-page','','','2021-10-20 00:41:18','2021-10-20 00:41:18','',0,'https://flaphotography.com/?page_id=79',0,'page','',0),(80,1,'2021-09-10 02:07:16','2021-09-10 02:07:16','','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-09-10 02:07:16','2021-09-10 02:07:16','',79,'https://flaphotography.com/?p=80',0,'revision','',0),(84,1,'2021-09-10 02:09:11','2021-09-10 02:09:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.9.7\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" animation_style=\"slide\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>WEBSITE IS COMING SOON!</h1>\n<h1>UNDER CONSTRUCTION</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png\" _builder_version=\"4.0.9\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2020-03-02 02:41\" _builder_version=\"4.9.7\" background_color=\"#D53E24\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-09-10 02:09:11','2021-09-10 02:09:11','',79,'https://flaphotography.com/?p=84',0,'revision','',0),(82,1,'2021-09-10 02:07:36','2021-09-10 02:07:36','','FotoOPEN-LOGO-2-VERS','','inherit','open','closed','','fotoopen-logo-2-vers','','','2021-09-10 02:07:36','2021-09-10 02:07:36','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png',0,'attachment','image/png',0),(83,1,'2021-09-10 02:07:43','2021-09-10 02:07:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" background_color=\"#1A6AAA\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" animation_style=\"slide\"]<h1>NORTHERN 2020 WEBSITE IS COMING SOON!</h1>\n<h1>UNDER CONSTRUCTION</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png\" _builder_version=\"4.0.9\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF NORTHERN ELECTRONICS\" date_time=\"2020-03-02 02:41\" _builder_version=\"4.3.4\" background_color=\"#D53E24\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-09-10 02:07:43','2021-09-10 02:07:43','',79,'https://flaphotography.com/?p=83',0,'revision','',0),(85,1,'2021-09-10 10:22:56','2021-09-10 10:22:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','publish','closed','closed','','home','','','2022-08-05 19:55:08','2022-08-05 19:55:08','',0,'https://flaphotography.com/?page_id=85',0,'page','',0),(561,1,'2021-09-18 01:14:46','2021-09-18 01:14:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-18 01:14:46','2021-09-18 01:14:46','',9,'https://flaphotography.com/?p=561',0,'revision','',0),(87,1,'2021-09-10 10:18:09','2021-09-10 10:18:09','','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-10 10:18:09','2021-09-10 10:18:09','',85,'https://flaphotography.com/?p=87',0,'revision','',0),(88,1,'2021-09-10 10:18:24','2021-09-10 10:18:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-10 10:18:24','2021-09-10 10:18:24','',85,'https://flaphotography.com/?p=88',0,'revision','',0),(89,1,'2021-09-10 10:20:20','2021-09-10 10:20:20','','Classic-Pen4','','inherit','open','closed','','classic-pen4','','','2021-09-10 10:20:20','2021-09-10 10:20:20','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg',0,'attachment','image/jpeg',0),(90,1,'2021-09-10 10:20:22','2021-09-10 10:20:22','','Classic-Pen-Further-right','','inherit','open','closed','','classic-pen-further-right','','','2021-09-10 10:20:22','2021-09-10 10:20:22','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg',0,'attachment','image/jpeg',0),(91,1,'2021-09-10 10:20:23','2021-09-10 10:20:23','','Photographer-Blue-Red-Radient-1','','inherit','open','closed','','photographer-blue-red-radient-1','','','2021-09-10 10:20:23','2021-09-10 10:20:23','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg',0,'attachment','image/jpeg',0),(92,1,'2021-09-10 10:20:28','2021-09-10 10:20:28','','Wedding-couple-3-Sky-Replaced-scaled-1','','inherit','open','closed','','wedding-couple-3-sky-replaced-scaled-1','','','2021-09-10 10:20:28','2021-09-10 10:20:28','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg',0,'attachment','image/jpeg',0),(93,1,'2021-09-10 10:20:35','2021-09-10 10:20:35','','Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1','','inherit','open','closed','','man-in-brown-bow-tie-suit-red-backg-scaled-1','','','2021-09-10 10:20:35','2021-09-10 10:20:35','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg',0,'attachment','image/jpeg',0),(94,1,'2021-09-10 10:20:41','2021-09-10 10:20:41','','Wedding_vows_No-frame2-scaled-1','','inherit','open','closed','','wedding_vows_no-frame2-scaled-1','','','2021-09-10 10:20:41','2021-09-10 10:20:41','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg',0,'attachment','image/jpeg',0),(95,1,'2021-09-10 10:20:49','2021-09-10 10:20:49','','Baby-puzzle-blend-home-scaled-1','','inherit','open','closed','','baby-puzzle-blend-home-scaled-1','','','2021-09-10 10:20:49','2021-09-10 10:20:49','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg',0,'attachment','image/jpeg',0),(193,1,'2021-09-11 14:14:33','2021-09-11 14:14:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 14:14:33','2021-09-11 14:14:33','',98,'https://flaphotography.com/?p=193',0,'revision','',0),(192,1,'2021-09-11 14:12:17','2021-09-11 14:12:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 14:12:17','2021-09-11 14:12:17','',98,'https://flaphotography.com/?p=192',0,'revision','',0),(279,1,'2021-09-12 23:16:12','2021-09-12 23:16:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:16:12','2021-09-12 23:16:12','',85,'https://flaphotography.com/?p=279',0,'revision','',0),(267,1,'2021-09-12 20:26:08','2021-09-12 20:26:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:26:08','2021-09-12 20:26:08','',85,'https://flaphotography.com/?p=267',0,'revision','',0),(97,1,'2021-09-10 10:22:56','2021-09-10 10:22:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.9.7\" background_color=\"rgba(0,0,0,0)\" background_enable_image=\"off\" background_blend=\"screen\" width=\"100%\" width_tablet=\"100%\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" min_height=\"646px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" custom_padding=\"10%|8%|10%|8%\" custom_padding_tablet=\"\" custom_padding_phone=\"22%||31%||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"flip\" custom_padding__hover=\"|||\"][et_pb_text content_last_edited=\"off|desktop\" _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.8em\" header_font=\"Arial|700|||||||\" header_text_color=\"#000000\" header_font_size=\"28px\" header_letter_spacing=\"5px\" header_line_height=\"1.2em\" text_orientation=\"center\" custom_margin=\"-29px|-35px|21px|9px|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1100ms\" animation_delay=\"150ms\" animation_intensity_slide=\"17%\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" text_text_shadow_vertical_length=\"0.22em\" text_text_shadow_blur_strength=\"0.38em\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.61em\" locked=\"off\"]<h1><span>FLAP PHOTOGRAPHY</span></h1>\n<p><span>Get your professional corporate headshot, modeling / product shots, and retouching services. </span></p>\n<p><span></span></p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"MODELING SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"19px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"CORPORATE HEADSHOTS\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"21px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" background_enable_color=\"off\" background_color_gradient_direction=\"134deg\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_position=\"bottom_center\" background_enable_video_mp4=\"off\" background_enable_video_webm=\"off\" background_video_width=\"500\" background_video_height=\"300\" custom_padding=\"|||\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|phone\" filter_saturate=\"104%\" filter_brightness=\"105%\" animation_style=\"flip\" animation_duration=\"0ms\" animation_intensity_flip=\"0%\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#000000\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.6em\" header_font=\"Arial|600|||||||\" header_text_align=\"left\" header_text_color=\"#ef4326\" header_font_size=\"35px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" width=\"71.9%\" max_width=\"100%\" custom_margin=\"206px|38px|16px|89px|false|false\" custom_margin_tablet=\"100px|||73px|false|false\" custom_margin_phone=\"62px|44px|80px|44px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|160px|0px|2px|false|false\" custom_padding_tablet=\"0px||53px||false|false\" custom_padding_phone=\"|50px|4px|1px|false|false\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1600ms\" animation_delay=\"200ms\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" ul_text_align_tablet=\"\" ul_text_align_phone=\"right\" ul_text_align_last_edited=\"on|phone\" header_font_tablet=\"\" header_font_phone=\"\" header_font_last_edited=\"on|phone\" header_text_align_tablet=\"\" header_text_align_phone=\"center\" header_text_align_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"34px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_horizontal_length=\"0.09em\" header_text_shadow_blur_strength=\"0.33em\"]<h1 style=\"text-align: left;\">Web Design</h1>\n<p style=\"text-align: left;\">Get a custom built website for your business. Extend your reach for your products and services with an awesome presence on the web.</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/web-design-services\" button_text=\"Learn More\" button_alignment=\"center\" button_text_last_edited=\"off|phone\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#1E7BC0\" button_border_width=\"7px\" button_border_color=\"#1E7BC0\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" button_icon_placement=\"left\" custom_margin=\"0px|77px||0px|false|false\" custom_margin_tablet=\"-44px||119px||false|false\" custom_margin_phone=\"-41px|80px|29px|80px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|25px|||false|false\" custom_padding_tablet=\"6px|21px|4px|11px|false|false\" custom_padding_phone=\"4px|18px|4px|9px|true|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_bg_color_tablet=\"\" button_bg_color_phone=\"\" button_bg_color_last_edited=\"on|desktop\" button_icon_placement_tablet=\"\" button_icon_placement_phone=\"left\" button_icon_placement_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d3d3d3\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ef4326\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.0.9\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#2081C6\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#006eb7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#1a6aaa\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-10 10:22:56','2021-09-10 10:22:56','',85,'https://flaphotography.com/?p=97',0,'revision','',0),(98,1,'2021-09-10 10:24:58','2021-09-10 10:24:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300PX\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"8px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_font_size_tablet=\"22px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"191,137,134,162\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"140,139,719,717,718\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','publish','closed','closed','','post-production','','','2022-07-02 15:24:26','2022-07-02 15:24:26','',0,'https://flaphotography.com/?page_id=98',0,'page','',0),(100,1,'2021-09-10 10:24:19','2021-09-10 10:24:19','','Auto Draft','','inherit','closed','closed','','98-revision-v1','','','2021-09-10 10:24:19','2021-09-10 10:24:19','',98,'https://flaphotography.com/?p=100',0,'revision','',0),(103,1,'2021-09-10 10:25:00','2021-09-10 10:25:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-10 10:25:00','2021-09-10 10:25:00','',98,'https://flaphotography.com/?p=103',0,'revision','',0),(102,1,'2021-09-10 10:24:58','2021-09-10 10:24:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_section]','Auto Draft','','inherit','closed','closed','','98-revision-v1','','','2021-09-10 10:24:58','2021-09-10 10:24:58','',98,'https://flaphotography.com/?p=102',0,'revision','',0),(104,1,'2021-09-10 10:25:48','2021-09-10 10:25:48','','photographer-on-camera-BLUE-NWV','','inherit','open','closed','','photographer-on-camera-blue-nwv','','','2021-09-10 10:25:48','2021-09-10 10:25:48','',0,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png',0,'attachment','image/png',0),(105,1,'2021-09-10 10:26:49','2021-09-10 10:26:49','','photographer-on-camera-RED-NW','','inherit','open','closed','','photographer-on-camera-red-nw','','','2021-09-10 10:26:49','2021-09-10 10:26:49','',0,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png',0,'attachment','image/png',0),(106,1,'2021-09-10 10:27:52','2021-09-10 10:27:52','','Women-red-dress_shutterstock_642298723-scaled-1','','inherit','open','closed','','women-red-dress_shutterstock_642298723-scaled-1','','','2021-09-10 10:27:52','2021-09-10 10:27:52','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg',0,'attachment','image/jpeg',0),(107,1,'2021-09-10 10:27:57','2021-09-10 10:27:57','','Woman-Clothed-Green-Change_Final-scaled-1','','inherit','open','closed','','woman-clothed-green-change_final-scaled-1','','','2021-09-10 10:27:57','2021-09-10 10:27:57','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg',0,'attachment','image/jpeg',0),(108,1,'2021-09-10 10:28:11','2021-09-10 10:28:11','','Woman-Clothed-Arctic-Change_Final-scaled-1','','inherit','open','closed','','woman-clothed-arctic-change_final-scaled-1','','','2021-09-10 10:28:11','2021-09-10 10:28:11','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',0,'attachment','image/jpeg',0),(109,1,'2021-09-10 10:46:14','2021-09-10 10:46:14','','Woman-Clothed-Brown-Change_Final-scaled-1','','inherit','open','closed','','woman-clothed-brown-change_final-scaled-1','','','2021-09-10 10:46:14','2021-09-10 10:46:14','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg',0,'attachment','image/jpeg',0),(110,1,'2021-09-10 10:46:20','2021-09-10 10:46:20','','Man-in-White-suit-shutterstock_1009394125-scaled-1','','inherit','open','closed','','man-in-white-suit-shutterstock_1009394125-scaled-1','','','2021-09-10 10:46:20','2021-09-10 10:46:20','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg',0,'attachment','image/jpeg',0),(111,1,'2021-09-10 10:46:26','2021-09-10 10:46:26','','Man-in-White-suit-LIGHT-RED-Color-change-scaled-1','','inherit','open','closed','','man-in-white-suit-light-red-color-change-scaled-1','','','2021-09-10 10:46:26','2021-09-10 10:46:26','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg',0,'attachment','image/jpeg',0),(112,1,'2021-09-10 10:46:32','2021-09-10 10:46:32','','Before','','inherit','open','closed','','man-in-white-to-black-suit-color-change-scaled-1','','','2021-09-11 04:01:13','2021-09-11 04:01:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg',0,'attachment','image/jpeg',0),(113,1,'2021-09-10 10:46:39','2021-09-10 10:46:39','','After - Color of suit and Background changed','','inherit','open','closed','','man-in-white-suit-background-replaced-scaled-1','','','2021-09-11 04:01:32','2021-09-11 04:01:32','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg',0,'attachment','image/jpeg',0),(127,1,'2021-09-11 02:26:15','2021-09-11 02:26:15','','Before','','inherit','open','closed','','wedding-couple-sky-shutterstock_1524509117-1280x855','','','2021-09-11 04:15:16','2021-09-11 04:15:16','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg',0,'attachment','image/jpeg',0),(126,1,'2021-09-11 02:25:58','2021-09-11 02:25:58','','After -sky background replaced and enhanced','','inherit','open','closed','','wedding-couple-3-sky-replaced-1-980x654','','','2021-09-11 03:53:21','2021-09-11 03:53:21','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg',0,'attachment','image/jpeg',0),(125,1,'2021-09-11 02:25:35','2021-09-11 02:25:35','','After - Tie and Background color changed','','inherit','open','closed','','man-in-bow-tie-suit-3-red-background-2','','','2021-09-11 03:55:15','2021-09-11 03:55:15','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg',0,'attachment','image/jpeg',0),(123,1,'2021-09-11 02:22:01','2021-09-11 02:22:01','','After - Tie and pocket colored brown','','inherit','open','closed','','man-in-brown-bow-tie-suit-red-backg-1','','','2021-09-11 03:56:02','2021-09-11 03:56:02','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg',0,'attachment','image/jpeg',0),(122,1,'2021-09-11 02:21:58','2021-09-11 02:21:58','','Before','','inherit','open','closed','','man-in-bow-tie-suit-shutterstock_1141300148','','','2021-09-11 03:55:22','2021-09-11 03:55:22','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (121,1,'2021-09-11 02:17:55','2021-09-11 02:17:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 02:17:55','2021-09-11 02:17:55','',98,'https://flaphotography.com/?p=121',0,'revision','',0),(1465,1,'2022-07-02 15:24:25','2022-07-02 15:24:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300PX\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"8px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_font_size_tablet=\"22px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"191,137,134,162\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"140,139,719,717,718\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-02 15:24:25','2022-07-02 15:24:25','',98,'https://flaphotography.com/?p=1465',0,'revision','',0),(1459,1,'2022-07-01 22:42:42','2022-07-01 22:42:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"20px|||||\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_font=\"Arial|600|||||||\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_text_align=\"center\" header_font_size_last_edited=\"on|tablet\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_phone=\"16px\" header_font_size_tablet=\"22px\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:42:42','2022-07-01 22:42:42','',98,'https://flaphotography.com/?p=1459',0,'revision','',0),(1454,1,'2022-07-01 22:31:26','2022-07-01 22:31:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" z_index=\"auto\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:31:26','2022-07-01 22:31:26','',98,'https://flaphotography.com/?p=1454',0,'revision','',0),(195,1,'2021-09-11 14:14:56','2021-09-11 14:14:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 14:14:56','2021-09-11 14:14:56','',98,'https://flaphotography.com/?p=195',0,'revision','',0),(170,1,'2021-09-11 03:51:04','2021-09-11 03:51:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:51:04','2021-09-11 03:51:04','',98,'https://flaphotography.com/?p=170',0,'revision','',0),(115,1,'2021-09-10 10:50:36','2021-09-10 10:50:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-10 10:50:36','2021-09-10 10:50:36','',98,'https://flaphotography.com/?p=115',0,'revision','',0),(183,1,'2021-09-11 13:43:38','2021-09-11 13:43:38','[et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\" sticky_enabled=\"0\" template_type=\"module\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text]','Retouching Text','','publish','closed','closed','','retouching-text','','','2021-09-11 13:43:38','2021-09-11 13:43:38','',0,'https://flaphotography.com/et_pb_layout/retouching-text/',0,'et_pb_layout','',0),(129,1,'2021-09-11 02:27:25','2021-09-11 02:27:25','','After - Daylight','','inherit','open','closed','','sun-brighter-2-light-black-man-reading-1024x682','','','2021-09-11 04:07:31','2021-09-11 04:07:31','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg',0,'attachment','image/jpeg',0),(130,1,'2021-09-11 02:27:30','2021-09-11 02:27:30','','After - Sunrise added','','inherit','open','closed','','sun-light-black-man-reading-after-980x653','','','2021-09-11 04:07:08','2021-09-11 04:07:08','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg',0,'attachment','image/jpeg',0),(131,1,'2021-09-11 02:28:44','2021-09-11 02:28:44','','After','','inherit','open','closed','','eye-iris2-hair-mag-after-dodged-teeth-w-woman-1024x683','','','2021-09-11 03:39:46','2021-09-11 03:39:46','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg',0,'attachment','image/jpeg',0),(132,1,'2021-09-11 02:28:50','2021-09-11 02:28:50','','Before','','inherit','open','closed','','eye-iris-hair-mag-before-woman-980x653','','','2021-09-11 03:20:02','2021-09-11 03:20:02','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg',0,'attachment','image/jpeg',0),(133,1,'2021-09-11 02:30:21','2021-09-11 02:30:21','','Before','','inherit','open','closed','','black-man-reading-pixaba-before-1024x682','','','2021-09-11 03:54:13','2021-09-11 03:54:13','',0,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg',0,'attachment','image/jpeg',0),(134,1,'2021-09-11 02:30:56','2021-09-11 02:30:56','','Before','','inherit','open','closed','','woman-in-flowers-2-mag-before-980x980','','','2021-09-11 03:31:33','2021-09-11 03:31:33','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg',0,'attachment','image/jpeg',0),(135,1,'2021-09-11 02:31:13','2021-09-11 02:31:13','','After','','inherit','open','closed','','red-lips-fingers-2-new-bgr-woman-with-flowers-1-1080x675','','','2021-09-11 03:31:26','2021-09-11 03:31:26','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg',0,'attachment','image/jpeg',0),(162,1,'2021-09-11 03:35:44','2021-09-11 03:35:44','','After','','inherit','open','closed','','red-lips-fingers-2-mag-new-bgr-woman-with-flowers-scaled','','','2021-09-11 03:36:27','2021-09-11 03:36:27','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg',0,'attachment','image/jpeg',0),(136,1,'2021-09-11 02:31:52','2021-09-11 02:31:52','','After -  color of BG, Lips, finger nails color changed','','inherit','open','closed','','red-lips-fingers-2-new-bgr-woman-with-flowers-1536x1536','','','2021-09-11 03:31:11','2021-09-11 03:31:11','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg',0,'attachment','image/jpeg',0),(137,1,'2021-09-11 02:32:15','2021-09-11 02:32:15','','After -  Lips, finger nails colored red, iris enhanced','','inherit','open','closed','','red-lips-fingers-woman-with-flowers-2048x2048','','','2021-09-11 13:56:07','2021-09-11 13:56:07','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg',0,'attachment','image/jpeg',0),(139,1,'2021-09-11 02:33:04','2021-09-11 02:33:04','','After - Dodge and Burning Applied','','inherit','open','closed','','dodged-beautiful-black-girl-mag-2-1280x1280','','','2021-09-11 03:29:02','2021-09-11 03:29:02','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg',0,'attachment','image/jpeg',0),(140,1,'2021-09-11 02:33:54','2021-09-11 02:33:54','','Before','','inherit','open','closed','','beautiful-black-girl-before-mag-1536x1536','','','2021-09-11 03:22:26','2021-09-11 03:22:26','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg',0,'attachment','image/jpeg',0),(141,1,'2021-09-11 02:35:02','2021-09-11 02:35:02','','After - Teeth whitened, Eye iris enhanced, color correction applied','','inherit','open','closed','','eye-hair-dodged-3-woman-whitened-teeth-bg-color-corrected','','','2022-07-01 22:52:42','2022-07-01 22:52:42','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected.jpg',0,'attachment','image/jpeg',0),(142,1,'2021-09-11 02:36:08','2021-09-11 02:36:08','','Before','','inherit','open','closed','','black-man-fashion-green-hutterstock_405569032-2880x1800','','','2021-09-11 03:24:57','2021-09-11 03:24:57','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1.jpg',0,'attachment','image/jpeg',0),(144,1,'2021-09-11 02:36:27','2021-09-11 02:36:27','','After - changed color of outfit and background','','inherit','open','closed','','black-man-fashion-green-clothe-retouched-2880x1800','','','2021-09-11 03:58:19','2021-09-11 03:58:19','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1.jpg',0,'attachment','image/jpeg',0),(146,1,'2021-09-11 02:42:06','2021-09-11 02:42:06','','Wedding_vows_No-frame2-1536x1024','','inherit','open','closed','','wedding_vows_no-frame2-1536x1024','','','2021-09-11 02:42:06','2021-09-11 02:42:06','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg',0,'attachment','image/jpeg',0),(147,1,'2021-09-11 02:46:20','2021-09-11 02:46:20','','Before','','inherit','open','closed','','blemish-asian-woman-shutterstock_1294767832-scaled','','','2021-09-11 03:45:47','2021-09-11 03:45:47','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg',0,'attachment','image/jpeg',0),(148,1,'2021-09-11 02:46:35','2021-09-11 02:46:35','','After - Blemish-Removed','','inherit','open','closed','','blemish-removed-after','','','2021-09-11 03:28:12','2021-09-11 03:28:12','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After.jpg',0,'attachment','image/jpeg',0),(149,1,'2021-09-11 02:47:24','2021-09-11 02:47:24','','After - Sunset light modified','','inherit','open','closed','','beautiful-woman_red-2-sunset-1536x1024','','','2021-09-11 03:27:58','2021-09-11 03:27:58','',0,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg',0,'attachment','image/jpeg',0),(150,1,'2021-09-11 02:47:42','2021-09-11 02:47:42','','After - Sunset light added','','inherit','open','closed','','beautiful-woman_sunlight-added-768x512','','','2021-09-11 03:27:27','2021-09-11 03:27:27','',0,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg',0,'attachment','image/jpeg',0),(151,1,'2021-09-11 02:47:59','2021-09-11 02:47:59','','Before','','inherit','open','closed','','beautiful-woman_pixaby-1280x853','','','2021-09-11 03:26:50','2021-09-11 03:26:50','',0,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg',0,'attachment','image/jpeg',0),(152,1,'2021-09-11 02:49:02','2021-09-11 02:49:02','','Woman-sitting-in-the-restaurant','','inherit','open','closed','','woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025','','','2021-09-11 03:03:48','2021-09-11 03:03:48','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg',0,'attachment','image/jpeg',0),(154,1,'2021-09-11 02:57:11','2021-09-11 02:57:11','','Before','','inherit','open','closed','','eye-before-woman-whitened-teeth-1280x854','','','2021-09-11 03:19:40','2021-09-11 03:19:40','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg',0,'attachment','image/jpeg',0),(159,1,'2021-09-11 03:14:37','2021-09-11 03:14:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,132,131\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141,137,136\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718,140,139\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:14:37','2021-09-11 03:14:37','',98,'https://flaphotography.com/?p=159',0,'revision','',0),(156,1,'2021-09-11 02:59:49','2021-09-11 02:59:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,132,131\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141,137,134\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 02:59:49','2021-09-11 02:59:49','',98,'https://flaphotography.com/?p=156',0,'revision','',0),(155,1,'2021-09-11 02:57:55','2021-09-11 02:57:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,132,131\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 02:57:55','2021-09-11 02:57:55','',98,'https://flaphotography.com/?p=155',0,'revision','',0),(157,1,'2021-09-11 03:01:36','2021-09-11 03:01:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,132,131\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141,137,136\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"719,717,718\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:01:36','2021-09-11 03:01:36','',98,'https://flaphotography.com/?p=157',0,'revision','',0),(160,1,'2021-09-11 03:17:55','2021-09-11 03:17:55','','Before','','inherit','open','closed','','idian-woman-shutterstock_195036215-1280x854','','','2021-09-11 03:18:38','2021-09-11 03:18:38','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg',0,'attachment','image/jpeg',0),(163,1,'2021-09-11 03:37:38','2021-09-11 03:37:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,132,131\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141,137,136\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:37:38','2021-09-11 03:37:38','',98,'https://flaphotography.com/?p=163',0,'revision','',0),(161,1,'2021-09-11 03:18:15','2021-09-11 03:18:15','','After - Dodged face-Lips retouched','','inherit','open','closed','','idian-woman-dodge-2-lips-full-face-scaled','','','2021-09-11 03:26:37','2021-09-11 03:26:37','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg',0,'attachment','image/jpeg',0),(164,1,'2021-09-11 03:40:44','2021-09-11 03:40:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,154,141\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"409,407,406,405,154,141,137,136\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:40:44','2021-09-11 03:40:44','',98,'https://flaphotography.com/?p=164',0,'revision','',0),(169,1,'2021-09-11 03:47:07','2021-09-11 03:47:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:47:07','2021-09-11 03:47:07','',98,'https://flaphotography.com/?p=169',0,'revision','',0),(166,1,'2021-09-11 03:42:03','2021-09-11 03:42:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"398,395,397,396,148,147,154,141\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:42:03','2021-09-11 03:42:03','',98,'https://flaphotography.com/?p=166',0,'revision','',0),(168,1,'2021-09-11 03:44:25','2021-09-11 03:44:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"724,723,725,726\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"729,731,730\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Replacing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"751,750,752,753\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:44:25','2021-09-11 03:44:25','',98,'https://flaphotography.com/?p=168',0,'revision','',0),(171,1,'2021-09-11 03:59:23','2021-09-11 03:59:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 03:59:23','2021-09-11 03:59:23','',98,'https://flaphotography.com/?p=171',0,'revision','',0),(172,1,'2021-09-11 04:00:24','2021-09-11 04:00:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"734,733,732,123\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:00:24','2021-09-11 04:00:24','',98,'https://flaphotography.com/?p=172',0,'revision','',0),(173,1,'2021-09-11 04:02:23','2021-09-11 04:02:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:02:23','2021-09-11 04:02:23','',98,'https://flaphotography.com/?p=173',0,'revision','',0),(176,1,'2021-09-11 04:03:53','2021-09-11 04:03:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,126\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:03:53','2021-09-11 04:03:53','',98,'https://flaphotography.com/?p=176',0,'revision','',0),(175,1,'2021-09-11 04:03:28','2021-09-11 04:03:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,126\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Stylizing background\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"805,804,809,811\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"812,816,815\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:03:28','2021-09-11 04:03:28','',98,'https://flaphotography.com/?p=175',0,'revision','',0),(179,1,'2021-09-11 04:07:49','2021-09-11 04:07:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:07:49','2021-09-11 04:07:49','',98,'https://flaphotography.com/?p=179',0,'revision','',0),(178,1,'2021-09-11 04:05:35','2021-09-11 04:05:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:05:35','2021-09-11 04:05:35','',98,'https://flaphotography.com/?p=178',0,'revision','',0),(180,1,'2021-09-11 04:09:37','2021-09-11 04:09:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Adding Light\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:09:37','2021-09-11 04:09:37','',98,'https://flaphotography.com/?p=180',0,'revision','',0),(181,1,'2021-09-11 04:11:38','2021-09-11 04:11:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:11:38','2021-09-11 04:11:38','',98,'https://flaphotography.com/?p=181',0,'revision','',0),(184,1,'2021-09-11 13:49:10','2021-09-11 13:49:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 13:49:10','2021-09-11 13:49:10','',98,'https://flaphotography.com/?p=184',0,'revision','',0),(182,1,'2021-09-11 04:12:00','2021-09-11 04:12:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" background_color=\"#FFFAF8\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#fffaf8\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"bottom left\" background_color_gradient_start_position=\"45%\" background_color_gradient_end_position=\"28%\" custom_padding=\"152px||0px|||\" background_last_edited=\"on|phone\" background_color_gradient_direction_radial_tablet=\"top left\" background_color_gradient_direction_radial_phone=\"top left\" background_color_gradient_start_position_tablet=\"44%\" background_color_gradient_start_position_phone=\"38%\" background_color_gradient_end_position_tablet=\"31%\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" width=\"auto\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"2560px\" custom_margin=\"-91px|auto||auto||\" custom_padding=\"1px||0px|||\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\"][et_pb_slider show_arrows=\"off\" show_pagination=\"off\" show_image_video_mobile=\"on\" _builder_version=\"4.0.9\" min_height=\"314px\" custom_margin=\"||||false|false\" custom_padding=\"35px||0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|desktop\" animation_style=\"roll\" auto=\"on\" auto_ignore_hover=\"on\"][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide image=\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png\" _builder_version=\"4.0.9\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_slider][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" custom_padding=\"|70px||70px|false|true\" custom_padding_tablet=\"|30px||30px|false|true\" custom_padding_phone=\"|16px||16px|false|true\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Arial|600|||||||\" header_text_color=\"#ffffff\" header_font_size=\"26px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c71c3\" background_color_gradient_end=\"rgba(224,43,32,0.9)\" background_color_gradient_direction=\"143deg\" custom_margin=\"||||false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"39px|67px||67px|false|true\" custom_padding_tablet=\"50px|119px||100px|false|false\" custom_padding_phone=\"33px|19px||19px|false|true\" custom_padding_last_edited=\"on|tablet\" text_font_size_tablet=\"\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.37em\" border_width_top=\"10px\" border_width_bottom=\"10px\"]<h1>Retouching for Photographers</h1>\n<p><span>Take your shot and we do the retouch.  </span><span>From photo selections (culling) to facial retouching, background enhancement, replacement, coloring, and stylizing, your photos will be well operated for a perfect look.</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"78px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\" custom_padding=\"||0px|||\" custom_margin=\"||-1px|||\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 04:12:00','2021-09-11 04:12:00','',98,'https://flaphotography.com/?p=182',0,'revision','',0),(188,1,'2021-09-11 13:53:49','2021-09-11 13:53:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 13:53:49','2021-09-11 13:53:49','',98,'https://flaphotography.com/?p=188',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (186,1,'2021-09-11 13:50:15','2021-09-11 13:50:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" custom_margin=\"6px||||false|false\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" custom_margin=\"15px||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"-28px||||false|false\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,137,136,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129,740,739,741\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"821,823,822\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"828,830,829\" _builder_version=\"4.0.9\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 13:50:15','2021-09-11 13:50:15','',98,'https://flaphotography.com/?p=186',0,'revision','',0),(191,1,'2021-09-11 14:10:20','2021-09-11 14:10:20','','Before','','inherit','open','closed','','woman-with-flowers-shutterstock_479006941-scaled-3','','','2021-09-11 14:12:05','2021-09-11 14:12:05','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg',0,'attachment','image/jpeg',0),(196,1,'2021-09-11 16:31:34','2021-09-11 16:31:34','','FotoOPEN-LOGO-ORG-300PX','','inherit','open','closed','','fotoopen-logo-org-300px','','','2021-09-11 16:31:34','2021-09-11 16:31:34','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png',0,'attachment','image/png',0),(197,1,'2021-09-11 16:31:41','2021-09-11 16:31:41','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n.cu-form .et_pb_contact_field_dov_1133_13 label{\n display: block !important;\n}\n\n\n','Divi','','publish','closed','closed','','divi','','','2022-09-16 20:16:20','2022-09-16 20:16:20','',0,'https://flaphotography.com/divi/',0,'custom_css','',0),(229,1,'2021-09-11 17:20:54','2021-09-11 17:20:54','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:20:54','2021-09-11 17:20:54','',197,'https://flaphotography.com/?p=229',0,'revision','',0),(228,1,'2021-09-11 17:19:24','2021-09-11 17:19:24','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\nspan.mobile_menu_bar:before{\r\n  color:d53c22;\r\n}\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:19:24','2021-09-11 17:19:24','',197,'https://flaphotography.com/?p=228',0,'revision','',0),(226,1,'2021-09-11 17:17:20','2021-09-11 17:17:20','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n\r\n/***TO CHANGE WOOCOMMERCE BUTTONS COLORS HT***/\r\n\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\r\n\r\nbackground: #EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground: #EF4326 !important;\r\n\r\nbox-shadow: none;\r\n\r\ntext-shadow: transparent !important;\r\n\r\ncolor:black !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n\r\n/***TO CHANGE PRICE AMOUNTS COLOR***/\r\n.woocommerce-Price-amount.amount {\r\ncolor: black	\r\n}\r\n\r\n/***TO CHANGE \"ADDED TO CART NOTIFICATION BACKGROUND COLOR\"***/\r\n.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {\r\n background: #1A6AAA;\r\n}\r\n\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\nspan.mobile_menu_bar:before{\r\n  color:d53c22;\r\n}\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:17:20','2021-09-11 17:17:20','',197,'https://flaphotography.com/?p=226',0,'revision','',0),(198,1,'2021-09-11 16:31:41','2021-09-11 16:31:41','/*** PRIMARY MENU HOVER COLOR ***/\r\n#top-menu li > a:hover {\r\n	color: #EF4326;\r\n}\r\n \r\n/*** TO POSITION SECONDARY MENU CONTACT DETAILS AND SOCIAL ICONS TO THE RIGHT  ***/\r\n#et-info {\r\n    float: right;\r\n}	\r\n\r\n/*** TO INCREASE SPACE BETWEEN SECONDARY MENU TEXT AND CONTACT DETAILS ***/\r\n#et-secondary-nav>li:last-child {\r\n    margin-right: 18px;\r\n}\r\n\r\n\r\n/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n\r\n/***TO CHANGE WOOCOMMERCE BUTTONS COLORS HT***/\r\n\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\r\n\r\nbackground: #EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground: #EF4326 !important;\r\n\r\nbox-shadow: none;\r\n\r\ntext-shadow: transparent !important;\r\n\r\ncolor:black !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n\r\n/***TO CHANGE PRICE AMOUNTS COLOR***/\r\n.woocommerce-Price-amount.amount {\r\ncolor: black	\r\n}\r\n\r\n/***TO CHANGE \"ADDED TO CART NOTIFICATION BACKGROUND COLOR\"***/\r\n.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {\r\n background: #1A6AAA;\r\n}\r\n\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n/***TO CHANGE DROPDOWN MENU HOVER TEXT COLOR***/\r\n#top-menu li li a:hover { color:#F05237 !important; }\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\nspan.mobile_menu_bar:before{\r\n  color:d53c22;\r\n} ','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 16:31:41','2021-09-11 16:31:41','',197,'https://flaphotography.com/?p=198',0,'revision','',0),(199,1,'2021-09-11 16:33:32','2021-09-11 16:33:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#91411d\" background_color_gradient_end=\"#215ca0\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_text_align=\"center\" header_font_size=\"42px\" header_font_size_last_edited=\"on|tablet\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_phone=\"26px\" header_font_size_tablet=\"34px\"]<h1>404</h1>\n<h1>PAGE NOT FOUND</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','publish','open','closed','','theme-builder-layout','','','2021-09-11 16:33:32','2021-09-11 16:33:32','',0,'https://flaphotography.com/et_body_layout/theme-builder-layout/',0,'et_body_layout','',0),(201,1,'2021-09-11 16:34:05','2021-09-11 16:34:05','','Default Website Template','','publish','closed','closed','','default-website-template','','','2021-09-11 16:34:05','2021-09-11 16:34:05','',0,'https://flaphotography.com/et_template/default-website-template/',0,'et_template','',0),(202,1,'2021-09-11 16:34:05','2021-09-11 16:34:05','','404 Page','','publish','closed','closed','','404-page','','','2021-09-11 16:34:05','2021-09-11 16:34:05','',0,'https://flaphotography.com/et_template/404-page/',0,'et_template','',0),(203,1,'2021-09-11 16:34:35','2021-09-11 16:34:35','','Theme Builder','','publish','closed','closed','','theme-builder','','','2021-09-11 16:34:35','2021-09-11 16:34:35','',0,'https://flaphotography.com/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),(204,1,'2021-09-11 16:34:35','2021-09-11 16:34:35','','Default Website Template','','publish','closed','closed','','default-website-template-2','','','2021-09-11 16:34:35','2021-09-11 16:34:35','',0,'https://flaphotography.com/et_template/default-website-template-2/',0,'et_template','',0),(205,1,'2021-09-11 16:34:35','2021-09-11 16:34:35','','404 Page','','publish','closed','closed','','404-page-2','','','2021-09-11 16:34:35','2021-09-11 16:34:35','',0,'https://flaphotography.com/et_template/404-page-2/',0,'et_template','',0),(224,1,'2021-09-11 17:16:12','2021-09-11 17:16:12','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n\r\n/***TO CHANGE WOOCOMMERCE BUTTONS COLORS HT***/\r\n\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\r\n\r\nbackground: #EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground: #EF4326 !important;\r\n\r\nbox-shadow: none;\r\n\r\ntext-shadow: transparent !important;\r\n\r\ncolor:black !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n\r\n/***TO CHANGE PRICE AMOUNTS COLOR***/\r\n.woocommerce-Price-amount.amount {\r\ncolor: black	\r\n}\r\n\r\n/***TO CHANGE \"ADDED TO CART NOTIFICATION BACKGROUND COLOR\"***/\r\n.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {\r\n background: #1A6AAA;\r\n}\r\n\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n/***TO CHANGE DROPDOWN MENU HOVER TEXT COLOR***/\r\n#top-menu li li a:hover { color:#F05237 !important; }\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\nspan.mobile_menu_bar:before{\r\n  color:d53c22;\r\n}\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:16:12','2021-09-11 17:16:12','',197,'https://flaphotography.com/?p=224',0,'revision','',0),(206,1,'2021-09-11 16:38:27','2021-09-11 16:38:27','/*** PRIMARY MENU HOVER COLOR ***/\r\n#top-menu li > a:hover {\r\n	color: #EF4326;\r\n}\r\n \r\n/*** TO POSITION SECONDARY MENU CONTACT DETAILS AND SOCIAL ICONS TO THE RIGHT  ***/\r\n#et-info {\r\n    float: right;\r\n}	\r\n\r\n/*** TO INCREASE SPACE BETWEEN SECONDARY MENU TEXT AND CONTACT DETAILS ***/\r\n#et-secondary-nav>li:last-child {\r\n    margin-right: 18px;\r\n}\r\n\r\n\r\n/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n\r\n/***TO CHANGE WOOCOMMERCE BUTTONS COLORS HT***/\r\n\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\r\n\r\nbackground:#EF4326 !important;\r\n\r\nbackground-color:#EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nbox-shadow: none;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\r\n\r\nbackground: #EF4326 !important;\r\n\r\ncolor:white !important;\r\n\r\ntext-shadow: transparent !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\r\n\r\nbackground: #EF4326 !important;\r\n\r\nbox-shadow: none;\r\n\r\ntext-shadow: transparent !important;\r\n\r\ncolor:black !important;\r\n\r\nborder-color:#ca0606 !important;\r\n\r\n}\r\n\r\n\r\n/***TO CHANGE PRICE AMOUNTS COLOR***/\r\n.woocommerce-Price-amount.amount {\r\ncolor: black	\r\n}\r\n\r\n/***TO CHANGE \"ADDED TO CART NOTIFICATION BACKGROUND COLOR\"***/\r\n.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {\r\n background: #1A6AAA;\r\n}\r\n\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n/***TO CHANGE DROPDOWN MENU HOVER TEXT COLOR***/\r\n#top-menu li li a:hover { color:#F05237 !important; }\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\nspan.mobile_menu_bar:before{\r\n  color:d53c22;\r\n}\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 16:38:27','2021-09-11 16:38:27','',197,'https://flaphotography.com/?p=206',0,'revision','',0),(207,1,'2021-09-11 16:40:50','2021-09-11 16:40:50','','FLAP-PHOTO-LOGO-400PX','','inherit','open','closed','','flap-photo-logo-400px','','','2021-09-11 16:40:50','2021-09-11 16:40:50','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png',0,'attachment','image/png',0),(208,1,'2022-03-25 00:25:49','2021-09-11 16:46:18',' ','','','publish','closed','closed','','208','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=208',1,'nav_menu_item','',0),(209,1,'2022-03-25 00:25:49','2021-09-11 16:46:18',' ','','','publish','closed','closed','','209','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=209',4,'nav_menu_item','',0),(211,1,'2022-03-25 00:25:49','2021-09-11 16:46:18','','CORPORATE PHOTOGRAPHY','','publish','closed','closed','','211','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=211',3,'nav_menu_item','',0),(213,1,'2022-03-25 00:25:49','2021-09-11 16:46:18','','PHOTOGRAPHY','','publish','closed','closed','','photography','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=213',2,'nav_menu_item','',0),(214,1,'2021-09-11 16:53:51','2021-09-11 16:53:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"47px||||false|false\" custom_margin_tablet=\"55px||||false|false\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','publish','closed','closed','','about','','','2021-12-09 13:42:53','2021-12-09 13:42:53','',0,'https://flaphotography.com/?page_id=214',0,'page','',0),(216,1,'2021-09-11 16:52:20','2021-09-11 16:52:20','','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-11 16:52:20','2021-09-11 16:52:20','',214,'https://flaphotography.com/?p=216',0,'revision','',0),(431,1,'2021-09-13 23:09:17','2021-09-13 23:09:17','[et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Photography: Corporate Headshots, Portraits, Modeling-Product Photography, Family Photoshoots, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\"]<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:09:17','2021-09-13 23:09:17','',214,'https://flaphotography.com/?p=431',0,'revision','',0),(218,1,'2021-09-11 16:52:48','2021-09-11 16:52:48','','Laptop-photoshop-NEW-Size-1920','','inherit','open','closed','','laptop-photoshop-new-size-1920','','','2021-09-11 16:52:48','2021-09-11 16:52:48','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg',0,'attachment','image/jpeg',0),(219,1,'2021-09-11 16:52:54','2021-09-11 16:52:54','','','','inherit','open','closed','','kassi-business-man-1500-px-tra-sha','','','2022-07-12 15:35:00','2022-07-12 15:35:00','',0,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png',0,'attachment','image/png',0),(220,1,'2021-09-11 16:53:38','2021-09-11 16:53:38','[et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Photography: Corporate Headshots, Portraits, Modeling-Product Photography, Family Photoshoots, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\"]<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-11 16:53:38','2021-09-11 16:53:38','',214,'https://flaphotography.com/?p=220',0,'revision','',0),(221,1,'2021-09-11 17:06:57','2021-09-11 17:06:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" max_width=\"1557px\" width=\"88%\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_menu _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"FLAP-PHOTO-LOGO-400PX\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:06:57','2021-09-11 17:06:57','',98,'https://flaphotography.com/?p=221',0,'revision','',0),(225,1,'2021-09-11 17:16:12','2021-09-11 17:16:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"||0px|||\" hover_enabled=\"0\" active_link_color=\"#000000\" menu_font=\"Arial||||||||\" menu_font_size=\"23px\" sticky_enabled=\"0\" menu_letter_spacing=\"4px\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:16:12','2021-09-11 17:16:12','',98,'https://flaphotography.com/?p=225',0,'revision','',0),(223,1,'2021-09-11 17:11:05','2021-09-11 17:11:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"||0px|||\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:11:05','2021-09-11 17:11:05','',98,'https://flaphotography.com/?p=223',0,'revision','',0),(227,1,'2021-09-11 17:17:43','2021-09-11 17:17:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#E02B20\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"23px\" menu_letter_spacing=\"4px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:17:43','2021-09-11 17:17:43','',98,'https://flaphotography.com/?p=227',0,'revision','',0),(232,1,'2021-09-11 17:26:51','2021-09-11 17:26:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"7px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color=\"#000000\" menu_line_height=\"1.3em\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:26:51','2021-09-11 17:26:51','',98,'https://flaphotography.com/?p=232',0,'revision','',0),(231,1,'2021-09-11 17:25:26','2021-09-11 17:25:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#E02B20\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"4px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:25:26','2021-09-11 17:25:26','',98,'https://flaphotography.com/?p=231',0,'revision','',0),(234,1,'2021-09-11 17:29:04','2021-09-11 17:29:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300PX\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','publish','closed','closed','','header-menu','','','2022-07-02 15:23:54','2022-07-02 15:23:54','',0,'https://flaphotography.com/et_pb_layout/header-menu/',0,'et_pb_layout','',0),(235,1,'2021-09-11 17:29:37','2021-09-11 17:29:37','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MENU SECTION','','publish','closed','closed','','footer-menu-section','','','2021-09-11 17:29:37','2021-09-11 17:29:37','',0,'https://flaphotography.com/et_pb_layout/footer-menu-section/',0,'et_pb_layout','',0),(238,1,'2022-03-25 00:25:49','2021-09-11 17:33:35','','GRAPHIC DESIGN','','publish','closed','closed','','web-graphic-design','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=238',7,'nav_menu_item','',0),(239,1,'2021-09-11 17:34:37','2021-09-11 17:34:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"7px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color=\"#000000\" menu_line_height=\"1.3em\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:34:37','2021-09-11 17:34:37','',234,'https://flaphotography.com/?p=239',0,'revision','',0),(240,1,'2021-09-11 17:34:37','2021-09-11 17:34:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"7px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color=\"#000000\" menu_line_height=\"1.3em\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" box_shadow_style=\"preset2\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:34:37','2021-09-11 17:34:37','',234,'https://flaphotography.com/?p=240',0,'revision','',0),(241,1,'2021-09-11 17:34:38','2021-09-11 17:34:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"7px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color=\"#000000\" menu_line_height=\"1.3em\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:34:38','2021-09-11 17:34:38','',234,'https://flaphotography.com/?p=241',0,'revision','',0),(242,1,'2021-09-11 17:37:08','2021-09-11 17:37:08','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\nfont-size: 12px !important;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:37:08','2021-09-11 17:37:08','',197,'https://flaphotography.com/?p=242',0,'revision','',0),(243,1,'2021-09-11 17:37:49','2021-09-11 17:37:49','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\nfont-size: 15px !important;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:37:49','2021-09-11 17:37:49','',197,'https://flaphotography.com/?p=243',0,'revision','',0),(244,1,'2021-09-11 17:38:14','2021-09-11 17:38:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:38:14','2021-09-11 17:38:14','',234,'https://flaphotography.com/?p=244',0,'revision','',0),(245,1,'2021-09-11 17:38:18','2021-09-11 17:38:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"235\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:38:18','2021-09-11 17:38:18','',98,'https://flaphotography.com/?p=245',0,'revision','',0),(237,1,'2021-09-11 17:30:00','2021-09-11 17:30:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_menu active_link_color=\"#B3B3B3\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_font_size=\"20px\" menu_letter_spacing=\"7px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" dropdown_menu_text_color=\"#FFFFFF\" sticky_enabled=\"0\" dropdown_menu_line_color=\"#000000\" dropdown_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#000000\" dropdown_menu_active_link_color=\"#D6D6D6\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color=\"#000000\" menu_line_height=\"1.3em\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\"][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"235\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:30:00','2021-09-11 17:30:00','',98,'https://flaphotography.com/?p=237',0,'revision','',0),(246,1,'2021-09-11 17:53:55','2021-09-11 17:53:55','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 15px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-11 17:53:55','2021-09-11 17:53:55','',197,'https://flaphotography.com/?p=246',0,'revision','',0),(247,1,'2021-09-11 17:55:51','2021-09-11 17:55:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" custom_margin=\"||56px|||\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:55:51','2021-09-11 17:55:51','',234,'https://flaphotography.com/?p=247',0,'revision','',0),(248,1,'2021-09-11 17:55:56','2021-09-11 17:55:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" custom_margin=\"||56px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"235\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:55:56','2021-09-11 17:55:56','',98,'https://flaphotography.com/?p=248',0,'revision','',0),(249,1,'2021-09-11 17:56:57','2021-09-11 17:56:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-11 17:56:57','2021-09-11 17:56:57','',234,'https://flaphotography.com/?p=249',0,'revision','',0),(250,1,'2021-09-11 17:58:27','2021-09-11 17:58:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"235\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-11 17:58:27','2021-09-11 17:58:27','',98,'https://flaphotography.com/?p=250',0,'revision','',0),(254,1,'2021-09-12 19:01:20','2021-09-12 19:01:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.10.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 19:01:20','2021-09-12 19:01:20','',234,'https://flaphotography.com/?p=254',0,'revision','',0),(251,1,'2021-09-12 00:57:50','2021-09-12 00:57:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.10.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 00:57:50','2021-09-12 00:57:50','',234,'https://flaphotography.com/?p=251',0,'revision','',0),(422,1,'2021-09-13 15:50:11','2021-09-13 15:50:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-13 15:50:11','2021-09-13 15:50:11','',98,'https://flaphotography.com/?p=422',0,'revision','',0),(253,1,'2021-09-12 00:59:10','2021-09-12 00:59:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\" _builder_version=\"4.10.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"6px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"28px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"26px\" title_font_size_phone=\"24px\" title_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"235\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-12 00:59:10','2021-09-12 00:59:10','',98,'https://flaphotography.com/?p=253',0,'revision','',0),(260,1,'2021-09-12 19:37:38','2021-09-12 19:37:38','','FLAP-PHOTO-LOGO-400PX3','','inherit','open','closed','','flap-photo-logo-400px3','','','2021-09-12 19:37:38','2021-09-12 19:37:38','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png',0,'attachment','image/png',0),(256,1,'2021-09-12 19:01:49','2021-09-12 19:01:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX2.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"FLAP-PHOTO-LOGO-400PX2\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 19:01:49','2021-09-12 19:01:49','',234,'https://flaphotography.com/?p=256',0,'revision','',0),(264,1,'2021-09-12 20:24:47','2021-09-12 20:24:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:24:47','2021-09-12 20:24:47','',85,'https://flaphotography.com/?p=264',0,'revision','',0),(263,1,'2021-09-12 20:21:46','2021-09-12 20:21:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.9.7\" background_color=\"rgba(0,0,0,0)\" background_enable_image=\"off\" background_blend=\"screen\" width=\"100%\" width_tablet=\"100%\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" min_height=\"646px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" custom_padding=\"10%|8%|10%|8%\" custom_padding_tablet=\"\" custom_padding_phone=\"22%||31%||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"flip\" custom_padding__hover=\"|||\"][et_pb_text content_last_edited=\"off|desktop\" _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.8em\" header_font=\"Arial|700|||||||\" header_text_color=\"#000000\" header_font_size=\"28px\" header_letter_spacing=\"5px\" header_line_height=\"1.2em\" text_orientation=\"center\" custom_margin=\"-29px|-35px|21px|9px|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1100ms\" animation_delay=\"150ms\" animation_intensity_slide=\"17%\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" text_text_shadow_vertical_length=\"0.22em\" text_text_shadow_blur_strength=\"0.38em\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.61em\" locked=\"off\"]<h1><span>FLAP PHOTOGRAPHY</span></h1>\n<p><span>Get your professional corporate headshot, modeling / product shots, and retouching services. </span></p>\n<p><span></span></p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"MODELING SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"19px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"CORPORATE HEADSHOTS\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"21px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" background_enable_color=\"off\" background_color_gradient_direction=\"134deg\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_position=\"bottom_center\" background_enable_video_mp4=\"off\" background_enable_video_webm=\"off\" background_video_width=\"500\" background_video_height=\"300\" custom_padding=\"|||\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|phone\" filter_saturate=\"104%\" filter_brightness=\"105%\" animation_style=\"flip\" animation_duration=\"0ms\" animation_intensity_flip=\"0%\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#000000\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.6em\" header_font=\"Arial|600|||||||\" header_text_align=\"left\" header_text_color=\"#ef4326\" header_font_size=\"35px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" width=\"71.9%\" max_width=\"100%\" custom_margin=\"206px|38px|16px|89px|false|false\" custom_margin_tablet=\"100px|||73px|false|false\" custom_margin_phone=\"62px|44px|80px|44px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|160px|0px|2px|false|false\" custom_padding_tablet=\"0px||53px||false|false\" custom_padding_phone=\"|50px|4px|1px|false|false\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1600ms\" animation_delay=\"200ms\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" ul_text_align_tablet=\"\" ul_text_align_phone=\"right\" ul_text_align_last_edited=\"on|phone\" header_font_tablet=\"\" header_font_phone=\"\" header_font_last_edited=\"on|phone\" header_text_align_tablet=\"\" header_text_align_phone=\"center\" header_text_align_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"34px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_horizontal_length=\"0.09em\" header_text_shadow_blur_strength=\"0.33em\"]<h1 style=\"text-align: left;\">Web Design</h1>\n<p style=\"text-align: left;\">Get a custom built website for your business. Extend your reach for your products and services with an awesome presence on the web.</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/web-design-services\" button_text=\"Learn More\" button_alignment=\"center\" button_text_last_edited=\"off|phone\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#1E7BC0\" button_border_width=\"7px\" button_border_color=\"#1E7BC0\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" button_icon_placement=\"left\" custom_margin=\"0px|77px||0px|false|false\" custom_margin_tablet=\"-44px||119px||false|false\" custom_margin_phone=\"-41px|80px|29px|80px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|25px|||false|false\" custom_padding_tablet=\"6px|21px|4px|11px|false|false\" custom_padding_phone=\"4px|18px|4px|9px|true|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_bg_color_tablet=\"\" button_bg_color_phone=\"\" button_bg_color_last_edited=\"on|desktop\" button_icon_placement_tablet=\"\" button_icon_placement_phone=\"left\" button_icon_placement_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d3d3d3\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ef4326\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.0.9\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#2081C6\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#006eb7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#1a6aaa\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:21:46','2021-09-12 20:21:46','',85,'https://flaphotography.com/?p=263',0,'revision','',0),(257,1,'2021-09-12 19:02:27','2021-09-12 19:02:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX2.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"FLAP-PHOTO-LOGO-400PX2\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.9.7\" background_color=\"rgba(0,0,0,0)\" background_enable_image=\"off\" background_blend=\"screen\" width=\"100%\" width_tablet=\"100%\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" min_height=\"646px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" custom_padding=\"10%|8%|10%|8%\" custom_padding_tablet=\"\" custom_padding_phone=\"22%||31%||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"flip\" custom_padding__hover=\"|||\"][et_pb_text content_last_edited=\"off|desktop\" _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.8em\" header_font=\"Arial|700|||||||\" header_text_color=\"#000000\" header_font_size=\"28px\" header_letter_spacing=\"5px\" header_line_height=\"1.2em\" text_orientation=\"center\" custom_margin=\"-29px|-35px|21px|9px|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1100ms\" animation_delay=\"150ms\" animation_intensity_slide=\"17%\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" text_text_shadow_vertical_length=\"0.22em\" text_text_shadow_blur_strength=\"0.38em\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.61em\" locked=\"off\"]<h1><span>FLAP PHOTOGRAPHY</span></h1>\n<p><span>Get your professional corporate headshot, modeling / product shots, and retouching services. </span></p>\n<p><span></span></p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"MODELING SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"19px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"CORPORATE HEADSHOTS\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"21px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" background_enable_color=\"off\" background_color_gradient_direction=\"134deg\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_position=\"bottom_center\" background_enable_video_mp4=\"off\" background_enable_video_webm=\"off\" background_video_width=\"500\" background_video_height=\"300\" custom_padding=\"|||\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|phone\" filter_saturate=\"104%\" filter_brightness=\"105%\" animation_style=\"flip\" animation_duration=\"0ms\" animation_intensity_flip=\"0%\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#000000\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.6em\" header_font=\"Arial|600|||||||\" header_text_align=\"left\" header_text_color=\"#ef4326\" header_font_size=\"35px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" width=\"71.9%\" max_width=\"100%\" custom_margin=\"206px|38px|16px|89px|false|false\" custom_margin_tablet=\"100px|||73px|false|false\" custom_margin_phone=\"62px|44px|80px|44px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|160px|0px|2px|false|false\" custom_padding_tablet=\"0px||53px||false|false\" custom_padding_phone=\"|50px|4px|1px|false|false\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1600ms\" animation_delay=\"200ms\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" ul_text_align_tablet=\"\" ul_text_align_phone=\"right\" ul_text_align_last_edited=\"on|phone\" header_font_tablet=\"\" header_font_phone=\"\" header_font_last_edited=\"on|phone\" header_text_align_tablet=\"\" header_text_align_phone=\"center\" header_text_align_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"34px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_horizontal_length=\"0.09em\" header_text_shadow_blur_strength=\"0.33em\"]<h1 style=\"text-align: left;\">Web Design</h1>\n<p style=\"text-align: left;\">Get a custom built website for your business. Extend your reach for your products and services with an awesome presence on the web.</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/web-design-services\" button_text=\"Learn More\" button_alignment=\"center\" button_text_last_edited=\"off|phone\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#1E7BC0\" button_border_width=\"7px\" button_border_color=\"#1E7BC0\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" button_icon_placement=\"left\" custom_margin=\"0px|77px||0px|false|false\" custom_margin_tablet=\"-44px||119px||false|false\" custom_margin_phone=\"-41px|80px|29px|80px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|25px|||false|false\" custom_padding_tablet=\"6px|21px|4px|11px|false|false\" custom_padding_phone=\"4px|18px|4px|9px|true|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_bg_color_tablet=\"\" button_bg_color_phone=\"\" button_bg_color_last_edited=\"on|desktop\" button_icon_placement_tablet=\"\" button_icon_placement_phone=\"left\" button_icon_placement_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d3d3d3\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ef4326\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.0.9\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#2081C6\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#006eb7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#1a6aaa\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 19:02:27','2021-09-12 19:02:27','',85,'https://flaphotography.com/?p=257',0,'revision','',0),(258,1,'2021-09-12 19:14:56','2021-09-12 19:14:56','','FLAP-PHOTO-ICON-300PX','','inherit','open','closed','','flap-photo-icon-300px','','','2021-09-12 19:14:56','2021-09-12 19:14:56','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png',0,'attachment','image/png',0),(261,1,'2021-09-12 19:37:50','2021-09-12 19:37:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"FLAP-PHOTO-LOGO-400PX3\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 19:37:50','2021-09-12 19:37:50','',234,'https://flaphotography.com/?p=261',0,'revision','',0),(262,1,'2021-09-12 19:37:52','2021-09-12 19:37:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"FLAP-PHOTO-LOGO-400PX3\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.9.7\" background_color=\"rgba(0,0,0,0)\" background_enable_image=\"off\" background_blend=\"screen\" width=\"100%\" width_tablet=\"100%\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" min_height=\"646px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" custom_padding=\"10%|8%|10%|8%\" custom_padding_tablet=\"\" custom_padding_phone=\"22%||31%||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"flip\" custom_padding__hover=\"|||\"][et_pb_text content_last_edited=\"off|desktop\" _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#ffffff\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.8em\" header_font=\"Arial|700|||||||\" header_text_color=\"#000000\" header_font_size=\"28px\" header_letter_spacing=\"5px\" header_line_height=\"1.2em\" text_orientation=\"center\" custom_margin=\"-29px|-35px|21px|9px|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|0px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1100ms\" animation_delay=\"150ms\" animation_intensity_slide=\"17%\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" text_text_shadow_vertical_length=\"0.22em\" text_text_shadow_blur_strength=\"0.38em\" header_text_shadow_style=\"preset1\" header_text_shadow_blur_strength=\"0.61em\" locked=\"off\"]<h1><span>FLAP PHOTOGRAPHY</span></h1>\n<p><span>Get your professional corporate headshot, modeling / product shots, and retouching services. </span></p>\n<p><span></span></p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"MODELING SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"19px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"CORPORATE HEADSHOTS\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_border_width=\"7px\" button_border_color=\"#ffffff\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"21px|6px|||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"22px|0px|||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|27px||||\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_text_size_tablet=\"\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#1A6AAA\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" background_enable_color=\"off\" background_color_gradient_direction=\"134deg\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_position=\"bottom_center\" background_enable_video_mp4=\"off\" background_enable_video_webm=\"off\" background_video_width=\"500\" background_video_height=\"300\" custom_padding=\"|||\" custom_padding_tablet=\"0px||||false|false\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|phone\" filter_saturate=\"104%\" filter_brightness=\"105%\" animation_style=\"flip\" animation_duration=\"0ms\" animation_intensity_flip=\"0%\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial|300|||||||\" text_text_color=\"#000000\" text_font_size=\"23px\" text_letter_spacing=\"2px\" text_line_height=\"1.6em\" header_font=\"Arial|600|||||||\" header_text_align=\"left\" header_text_color=\"#ef4326\" header_font_size=\"35px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" width=\"71.9%\" max_width=\"100%\" custom_margin=\"206px|38px|16px|89px|false|false\" custom_margin_tablet=\"100px|||73px|false|false\" custom_margin_phone=\"62px|44px|80px|44px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|160px|0px|2px|false|false\" custom_padding_tablet=\"0px||53px||false|false\" custom_padding_phone=\"|50px|4px|1px|false|false\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"top\" animation_duration=\"1600ms\" animation_delay=\"200ms\" text_font_tablet=\"\" text_font_phone=\"Arial|300|||||||\" text_font_last_edited=\"on|phone\" ul_text_align_tablet=\"\" ul_text_align_phone=\"right\" ul_text_align_last_edited=\"on|phone\" header_font_tablet=\"\" header_font_phone=\"\" header_font_last_edited=\"on|phone\" header_text_align_tablet=\"\" header_text_align_phone=\"center\" header_text_align_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"34px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset1\" header_text_shadow_horizontal_length=\"0.09em\" header_text_shadow_blur_strength=\"0.33em\"]<h1 style=\"text-align: left;\">Web Design</h1>\n<p style=\"text-align: left;\">Get a custom built website for your business. Extend your reach for your products and services with an awesome presence on the web.</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/web-design-services\" button_text=\"Learn More\" button_alignment=\"center\" button_text_last_edited=\"off|phone\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#1E7BC0\" button_border_width=\"7px\" button_border_color=\"#1E7BC0\" button_border_radius=\"20px\" button_letter_spacing=\"2px\" button_font=\"Arial|700||on|||||\" button_icon=\"%%36%%\" button_icon_placement=\"left\" custom_margin=\"0px|77px||0px|false|false\" custom_margin_tablet=\"-44px||119px||false|false\" custom_margin_phone=\"-41px|80px|29px|80px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|25px|||false|false\" custom_padding_tablet=\"6px|21px|4px|11px|false|false\" custom_padding_phone=\"4px|18px|4px|9px|true|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"fade\" button_bg_color_tablet=\"\" button_bg_color_phone=\"\" button_bg_color_last_edited=\"on|desktop\" button_icon_placement_tablet=\"\" button_icon_placement_phone=\"left\" button_icon_placement_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d3d3d3\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ef4326\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.0.9\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#2081C6\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#006eb7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ef4326\" background_color_gradient_end=\"#1a6aaa\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 19:37:52','2021-09-12 19:37:52','',85,'https://flaphotography.com/?p=262',0,'revision','',0),(276,1,'2021-09-12 23:10:21','2021-09-12 23:10:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 23:10:21','2021-09-12 23:10:21','',234,'https://flaphotography.com/?p=276',0,'revision','',0),(278,1,'2021-09-12 23:12:10','2021-09-12 23:12:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:12:10','2021-09-12 23:12:10','',85,'https://flaphotography.com/?p=278',0,'revision','',0),(277,1,'2021-09-12 23:10:24','2021-09-12 23:10:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" background_color=\"#B3B3B3\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After -  color of BG, Lips, finger nails color changed\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:10:24','2021-09-12 23:10:24','',85,'https://flaphotography.com/?p=277',0,'revision','',0),(266,1,'2021-09-12 20:25:22','2021-09-12 20:25:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/flap-photography\" button_text=\"Know More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"4px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||-45px|||\" animation_direction=\"right\" button_text_size_tablet=\"\" button_text_size_phone=\"\" button_text_size_last_edited=\"on|desktop\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-scaled-1.jpg\" _builder_version=\"4.0.9\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||57px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:25:22','2021-09-12 20:25:22','',85,'https://flaphotography.com/?p=266',0,'revision','',0),(269,1,'2021-09-12 20:26:47','2021-09-12 20:26:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After -  color of BG, Lips, finger nails color changed\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:26:47','2021-09-12 20:26:47','',85,'https://flaphotography.com/?p=269',0,'revision','',0),(271,1,'2021-09-12 20:27:57','2021-09-12 20:27:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" background_color=\"#B3B3B3\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After -  color of BG, Lips, finger nails color changed\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.0.9\" background_color=\"#ffffff\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:27:57','2021-09-12 20:27:57','',85,'https://flaphotography.com/?p=271',0,'revision','',0),(275,1,'2021-09-12 20:32:46','2021-09-12 20:32:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" background_color=\"#B3B3B3\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After -  color of BG, Lips, finger nails color changed\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:32:46','2021-09-12 20:32:46','',85,'https://flaphotography.com/?p=275',0,'revision','',0),(273,1,'2021-09-12 20:30:42','2021-09-12 20:30:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"19px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"4.0.9\" background_enable_video_mp4=\"off\" custom_margin=\"||0px||false|false\" custom_padding=\"0px|0px|0px|0px|false|false\" top_divider_color=\"#ffffff\" top_divider_repeat=\"2x\" top_divider_arrangement=\"above_content\" bottom_divider_style=\"curve2\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"111px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" background_last_edited=\"on|desktop\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" column_structure=\"1_3,1_3,1_3\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" background_color=\"#B3B3B3\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After -  color of BG, Lips, finger nails color changed\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 20:30:42','2021-09-12 20:30:42','',85,'https://flaphotography.com/?p=273',0,'revision','',0),(293,1,'2021-09-12 23:39:50','2021-09-12 23:39:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Prayer Counselling section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.49)\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"0px|20px|0px|20px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.6\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"23px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_margin=\"|-15px||-15px|false|true\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Prayer request &amp; Counselling</h1>\n<p>We are glad to pray and serve you.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|50px|15px|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.6\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(249,170,0,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/prayer-together-1280px.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Prayer Request\" button_alignment=\"center\" module_id=\"overlay_unique_id_656\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.43)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-228px\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|-221px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Get Counselling\" button_alignment=\"center\" module_id=\"overlay_unique_id_567\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.64)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-74px\" transform_translate_tablet=\"0px|-91px\" transform_translate_phone=\"0px|-88px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Sermon section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#FFFFFF\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"122px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"20px|20px|20px|20px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset3\" box_shadow_vertical=\"-7px\" box_shadow_color=\"rgba(0,0,0,0.2)\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.68)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Our Sermons</h1>\n<p>Are freely accessible and you\'ll no longer have to miss one bit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:39:50','2021-09-12 23:39:50','',85,'https://flaphotography.com/?p=293',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (294,1,'2021-09-12 23:42:42','2021-09-12 23:42:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Prayer Counselling section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.49)\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"0px|20px|0px|20px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.6\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"23px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_margin=\"|-15px||-15px|false|true\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Prayer request &amp; Counselling</h1>\n<p>We are glad to pray and serve you.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|50px|15px|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.6\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(249,170,0,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/prayer-together-1280px.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Prayer Request\" button_alignment=\"center\" module_id=\"overlay_unique_id_656\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.43)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-228px\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|-221px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Get Counselling\" button_alignment=\"center\" module_id=\"overlay_unique_id_567\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.64)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-74px\" transform_translate_tablet=\"0px|-91px\" transform_translate_phone=\"0px|-88px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Sermon section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#FFFFFF\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"122px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"20px|20px|20px|20px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset3\" box_shadow_vertical=\"-7px\" box_shadow_color=\"rgba(0,0,0,0.2)\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.68)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Our Sermons</h1>\n<p>Are freely accessible and you\'ll no longer have to miss one bit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:42:42','2021-09-12 23:42:42','',85,'https://flaphotography.com/?p=294',0,'revision','',0),(290,1,'2021-09-12 23:30:52','2021-09-12 23:30:52','[et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\" template_type=\"module\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text]','SAMPLE-MODULE','','publish','closed','closed','','sample-module','','','2021-09-12 23:30:52','2021-09-12 23:30:52','',0,'https://flaphotography.com/et_pb_layout/sample-module/',0,'et_pb_layout','',0),(291,1,'2021-09-12 23:31:42','2021-09-12 23:31:42','[et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.68)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" template_type=\"module\"][/et_pb_button]','SAMPLE-BUTTON','','publish','closed','closed','','sample-button','','','2021-09-12 23:31:42','2021-09-12 23:31:42','',0,'https://flaphotography.com/et_pb_layout/sample-button/',0,'et_pb_layout','',0),(292,1,'2021-09-12 23:31:53','2021-09-12 23:31:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Prayer Counselling section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.49)\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"0px|20px|0px|20px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.6\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"23px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_margin=\"|-15px||-15px|false|true\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Prayer request &amp; Counselling</h1>\n<p>We are glad to pray and serve you.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|50px|15px|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.6\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(249,170,0,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/prayer-together-1280px.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Prayer Request\" button_alignment=\"center\" module_id=\"overlay_unique_id_656\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.43)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-228px\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|-221px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Get Counselling\" button_alignment=\"center\" module_id=\"overlay_unique_id_567\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.64)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-74px\" transform_translate_tablet=\"0px|-91px\" transform_translate_phone=\"0px|-88px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Sermon section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#FFFFFF\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"122px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"20px|20px|20px|20px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset3\" box_shadow_vertical=\"-7px\" box_shadow_color=\"rgba(0,0,0,0.2)\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.68)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Our Sermons</h1>\n<p>Are freely accessible and you\'ll no longer have to miss one bit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:31:53','2021-09-12 23:31:53','',85,'https://flaphotography.com/?p=292',0,'revision','',0),(296,1,'2021-09-12 23:43:29','2021-09-12 23:43:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:43:29','2021-09-12 23:43:29','',85,'https://flaphotography.com/?p=296',0,'revision','',0),(295,1,'2021-09-12 23:43:10','2021-09-12 23:43:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Prayer Counselling section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.49)\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"0px|20px|0px|20px|true|true\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.6\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"23px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_margin=\"|-15px||-15px|false|true\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Prayer request &amp; Counselling</h1>\n<p>We are glad to pray and serve you.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|50px|15px|false|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.6\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(249,170,0,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/prayer-together-1280px.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Prayer Request\" button_alignment=\"center\" module_id=\"overlay_unique_id_656\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.43)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-228px\" transform_translate_tablet=\"\" transform_translate_phone=\"0px|-221px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Get Counselling\" button_alignment=\"center\" module_id=\"overlay_unique_id_567\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.64)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-74px\" transform_translate_tablet=\"0px|-91px\" transform_translate_phone=\"0px|-88px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Sermon section\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#FFFFFF\" top_divider_style=\"arrow3\" top_divider_color=\"RGBA(0,0,0,0)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.9.10\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"122px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" width=\"100%\" width_tablet=\"82%\" width_phone=\"90%\" width_last_edited=\"on|phone\" max_width=\"1169px\" custom_margin=\"||||false|false\" custom_padding=\"20px|20px|20px|20px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset3\" box_shadow_vertical=\"-7px\" box_shadow_color=\"rgba(0,0,0,0.2)\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.10\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://ekmintoronto.com/sermons\" button_text=\"Watch Sermons\" button_alignment=\"center\" _builder_version=\"4.9.10\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"24px\" button_text_color=\"#FFFFFF\" button_bg_color=\"rgba(249,170,0,0.68)\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"3px\" button_font=\"Old Standard TT|600|||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"RGBA(0,0,0,0)\" custom_padding=\"15px|15px|15px|15px|true|true\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.10\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"19px\" text_line_height=\"1.2em\" header_font=\"Old Standard TT|600|||||||\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#FFFFFF\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" custom_padding=\"30px|20px|30px|20px|true|true\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||20px|true|true\" custom_padding_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"\" header_font_size_phone=\"19px\" header_font_size_last_edited=\"on|phone\" box_shadow_style=\"preset3\" box_shadow_blur=\"13px\" box_shadow_spread=\"-12px\" global_colors_info=\"{}\"]<h1>Our Sermons</h1>\n<p>Are freely accessible and you\'ll no longer have to miss one bit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:43:10','2021-09-12 23:43:10','',85,'https://flaphotography.com/?p=295',0,'revision','',0),(299,1,'2021-09-12 23:55:04','2021-09-12 23:55:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:55:04','2021-09-12 23:55:04','',85,'https://flaphotography.com/?p=299',0,'revision','',0),(298,1,'2021-09-12 23:50:12','2021-09-12 23:50:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/catch-fish-1400PX.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-131px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:50:12','2021-09-12 23:50:12','',85,'https://flaphotography.com/?p=298',0,'revision','',0),(300,1,'2021-09-12 23:57:05','2021-09-12 23:57:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:57:05','2021-09-12 23:57:05','',85,'https://flaphotography.com/?p=300',0,'revision','',0),(301,1,'2021-09-12 23:57:30','2021-09-12 23:57:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-12 23:57:30','2021-09-12 23:57:30','',234,'https://flaphotography.com/?p=301',0,'revision','',0),(302,1,'2021-09-12 23:57:32','2021-09-12 23:57:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:57:32','2021-09-12 23:57:32','',85,'https://flaphotography.com/?p=302',0,'revision','',0),(350,1,'2021-09-13 01:11:45','2021-09-13 01:11:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(0,0,0,0)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:11:45','2021-09-13 01:11:45','',85,'https://flaphotography.com/?p=350',0,'revision','',0),(349,1,'2021-09-13 01:10:49','2021-09-13 01:10:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(0,0,0,0)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:10:49','2021-09-13 01:10:49','',85,'https://flaphotography.com/?p=349',0,'revision','',0),(303,1,'2021-09-12 23:59:53','2021-09-12 23:59:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-12 23:59:53','2021-09-12 23:59:53','',85,'https://flaphotography.com/?p=303',0,'revision','',0),(304,1,'2021-09-13 00:02:34','2021-09-13 00:02:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:02:34','2021-09-13 00:02:34','',85,'https://flaphotography.com/?p=304',0,'revision','',0),(307,1,'2021-09-13 00:06:53','2021-09-13 00:06:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:06:53','2021-09-13 00:06:53','',85,'https://flaphotography.com/?p=307',0,'revision','',0),(306,1,'2021-09-13 00:05:17','2021-09-13 00:05:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:05:17','2021-09-13 00:05:17','',85,'https://flaphotography.com/?p=306',0,'revision','',0),(312,1,'2021-09-13 00:18:30','2021-09-13 00:18:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:18:30','2021-09-13 00:18:30','',85,'https://flaphotography.com/?p=312',0,'revision','',0),(308,1,'2021-09-13 00:08:56','2021-09-13 00:08:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(252,214,0,0.04)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-skies_MG_8543-2000PX-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:08:56','2021-09-13 00:08:56','',85,'https://flaphotography.com/?p=308',0,'revision','',0),(309,1,'2021-09-13 00:15:24','2021-09-13 00:15:24','','','','inherit','open','closed','','marvelous-2000px','','','2022-07-12 15:34:54','2022-07-12 15:34:54','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX.jpg',0,'attachment','image/jpeg',0),(313,1,'2021-09-13 00:19:28','2021-09-13 00:19:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:19:28','2021-09-13 00:19:28','',85,'https://flaphotography.com/?p=313',0,'revision','',0),(311,1,'2021-09-13 00:17:49','2021-09-13 00:17:49','','','','inherit','open','closed','','marvelous-2000px-crop','','','2022-07-12 15:34:56','2022-07-12 15:34:56','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg',0,'attachment','image/jpeg',0),(316,1,'2021-09-13 00:25:43','2021-09-13 00:25:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:25:43','2021-09-13 00:25:43','',85,'https://flaphotography.com/?p=316',0,'revision','',0),(315,1,'2021-09-13 00:24:18','2021-09-13 00:24:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:24:18','2021-09-13 00:24:18','',85,'https://flaphotography.com/?p=315',0,'revision','',0),(318,1,'2021-09-13 00:26:52','2021-09-13 00:26:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:26:52','2021-09-13 00:26:52','',85,'https://flaphotography.com/?p=318',0,'revision','',0),(323,1,'2021-09-13 00:36:20','2021-09-13 00:36:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:36:20','2021-09-13 00:36:20','',85,'https://flaphotography.com/?p=323',0,'revision','',0),(321,1,'2021-09-13 00:29:27','2021-09-13 00:29:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:29:27','2021-09-13 00:29:27','',85,'https://flaphotography.com/?p=321',0,'revision','',0),(320,1,'2021-09-13 00:28:39','2021-09-13 00:28:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://fotopens.com/post-production-services\" button_text=\"View More\" button_alignment=\"center\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#ffffff\" button_bg_color=\"#383838\" button_bg_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\" button_border_width=\"5px\" button_border_color=\"#1A6AAA\" button_border_radius=\"100px\" button_letter_spacing=\"5px\" button_font=\"|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" custom_margin=\"||41px|||\" animation_direction=\"right\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#ef4326\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#e0e0e0\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|desktop\" button_bg_color__hover=\"#ffffff\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\" button_bg_use_color_gradient__hover=\"off\" button_bg_color_gradient_start__hover=\"#ffffff\" button_bg_color_gradient_end__hover=\"#ef4326\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:28:39','2021-09-13 00:28:39','',85,'https://flaphotography.com/?p=320',0,'revision','',0),(324,1,'2021-09-13 00:36:52','2021-09-13 00:36:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:36:52','2021-09-13 00:36:52','',85,'https://flaphotography.com/?p=324',0,'revision','',0),(325,1,'2021-09-13 00:37:43','2021-09-13 00:37:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"24px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"24px\" title_font_size_phone=\"20px\" title_font_size_last_edited=\"on|phone\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:37:43','2021-09-13 00:37:43','',85,'https://flaphotography.com/?p=325',0,'revision','',0),(326,1,'2021-09-13 00:42:45','2021-09-13 00:42:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:42:45','2021-09-13 00:42:45','',85,'https://flaphotography.com/?p=326',0,'revision','',0),(329,1,'2021-09-13 00:46:46','2021-09-13 00:46:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:46:46','2021-09-13 00:46:46','',85,'https://flaphotography.com/?p=329',0,'revision','',0),(327,1,'2021-09-13 00:43:38','2021-09-13 00:43:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_all=\"#000000\" border_width_all=\"7px\" sticky_enabled=\"0\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px-scaled-1\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:43:38','2021-09-13 00:43:38','',85,'https://flaphotography.com/?p=327',0,'revision','',0),(343,1,'2021-09-13 00:58:52','2021-09-13 00:58:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:58:52','2021-09-13 00:58:52','',85,'https://flaphotography.com/?p=343',0,'revision','',0),(342,1,'2021-09-13 00:57:15','2021-09-13 00:57:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:57:15','2021-09-13 00:57:15','',85,'https://flaphotography.com/?p=342',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (332,1,'2021-09-13 00:48:56','2021-09-13 00:48:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:48:56','2021-09-13 00:48:56','',85,'https://flaphotography.com/?p=332',0,'revision','',0),(339,1,'2021-09-13 00:52:44','2021-09-13 00:52:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:52:44','2021-09-13 00:52:44','',85,'https://flaphotography.com/?p=339',0,'revision','',0),(334,1,'2021-09-13 00:49:36','2021-09-13 00:49:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:49:36','2021-09-13 00:49:36','',85,'https://flaphotography.com/?p=334',0,'revision','',0),(338,1,'2021-09-13 00:51:21','2021-09-13 00:51:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:51:21','2021-09-13 00:51:21','',85,'https://flaphotography.com/?p=338',0,'revision','',0),(336,1,'2021-09-13 00:50:25','2021-09-13 00:50:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(239,67,38,0.92)\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:50:25','2021-09-13 00:50:25','',85,'https://flaphotography.com/?p=336',0,'revision','',0),(341,1,'2021-09-13 00:55:00','2021-09-13 00:55:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 00:55:00','2021-09-13 00:55:00','',85,'https://flaphotography.com/?p=341',0,'revision','',0),(346,1,'2021-09-13 01:01:53','2021-09-13 01:01:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:01:53','2021-09-13 01:01:53','',85,'https://flaphotography.com/?p=346',0,'revision','',0),(344,1,'2021-09-13 01:01:15','2021-09-13 01:01:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" background_color=\"rgba(214,214,214,0.4)\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:01:15','2021-09-13 01:01:15','',85,'https://flaphotography.com/?p=344',0,'revision','',0),(537,1,'2021-09-17 01:27:11','2021-09-17 01:27:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" hover_enabled=\"0\" title_text=\"HUGE 40 OFF PROMO\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-17 01:27:11','2021-09-17 01:27:11','',85,'https://flaphotography.com/?p=537',0,'revision','',0),(351,1,'2021-09-13 01:15:37','2021-09-13 01:15:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"COUPLE SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:15:37','2021-09-13 01:15:37','',85,'https://flaphotography.com/?p=351',0,'revision','',0),(359,1,'2022-03-25 00:25:49','2021-09-13 01:24:37',' ','','','publish','closed','closed','','359','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=359',6,'nav_menu_item','',0),(383,1,'2021-09-13 02:25:36','2021-09-13 02:25:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-13 02:25:36','2021-09-13 02:25:36','',234,'https://flaphotography.com/?p=383',0,'revision','',0),(360,1,'2021-09-13 01:25:30','2021-09-13 01:25:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_url=\"https://flaphotography.com/\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-13 01:25:30','2021-09-13 01:25:30','',234,'https://flaphotography.com/?p=360',0,'revision','',0),(361,1,'2021-09-13 01:25:32','2021-09-13 01:25:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_url=\"https://flaphotography.com/\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - changed color of outfit and background\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:25:32','2021-09-13 01:25:32','',85,'https://flaphotography.com/?p=361',0,'revision','',0),(362,1,'2021-09-13 01:30:28','2021-09-13 01:30:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.77)\" background_color_gradient_end=\"#d6d6d6\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#000000\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.19)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:30:28','2021-09-13 01:30:28','',61,'https://flaphotography.com/?p=362',0,'revision','',0),(353,1,'2021-09-13 01:18:02','2021-09-13 01:18:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:18:02','2021-09-13 01:18:02','',85,'https://flaphotography.com/?p=353',0,'revision','',0),(354,1,'2021-09-13 01:18:18','2021-09-13 01:18:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|phone\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"#f9aa00\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:18:18','2021-09-13 01:18:18','',85,'https://flaphotography.com/?p=354',0,'revision','',0),(357,1,'2021-09-13 01:20:20','2021-09-13 01:20:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:20:20','2021-09-13 01:20:20','',85,'https://flaphotography.com/?p=357',0,'revision','',0),(518,1,'2021-09-16 02:12:41','2021-09-16 02:12:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-FINAL-SEP-15-2021.mp4\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"FLAP POMO FINAL-SEP 15 2021\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-16 02:12:41','2021-09-16 02:12:41','',85,'https://flaphotography.com/?p=518',0,'revision','',0),(358,1,'2021-09-13 01:22:44','2021-09-13 01:22:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - changed color of outfit and background\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:22:44','2021-09-13 01:22:44','',85,'https://flaphotography.com/?p=358',0,'revision','',0),(356,1,'2021-09-13 01:19:44','2021-09-13 01:19:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:19:44','2021-09-13 01:19:44','',85,'https://flaphotography.com/?p=356',0,'revision','',0),(363,1,'2021-09-13 01:31:47','2021-09-13 01:31:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.77)\" background_color_gradient_end=\"#d6d6d6\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(102,33,206,0.64)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:31:47','2021-09-13 01:31:47','',61,'https://flaphotography.com/?p=363',0,'revision','',0),(364,1,'2021-09-13 01:35:09','2021-09-13 01:35:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.77)\" background_color_gradient_end=\"#d6d6d6\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:35:09','2021-09-13 01:35:09','',61,'https://flaphotography.com/?p=364',0,'revision','',0),(367,1,'2021-09-13 01:40:29','2021-09-13 01:40:29','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','publish','closed','closed','','footer-main','','','2022-08-05 19:55:04','2022-08-05 19:55:04','',0,'https://flaphotography.com/et_pb_layout/footer-main/',0,'et_pb_layout','',0),(545,1,'2021-09-17 12:04:10','2021-09-17 12:04:10','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-17 12:04:10','2021-09-17 12:04:10','',367,'https://flaphotography.com/?p=545',0,'revision','',0),(401,1,'2021-09-13 02:54:59','2021-09-13 02:54:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 02:54:59','2021-09-13 02:54:59','',85,'https://flaphotography.com/?p=401',0,'revision','',0),(368,1,'2021-09-13 01:40:35','2021-09-13 01:40:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_url=\"https://flaphotography.com/\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - changed color of outfit and background\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 01:40:35','2021-09-13 01:40:35','',85,'https://flaphotography.com/?p=368',0,'revision','',0),(370,1,'2021-09-13 01:40:52','2021-09-13 01:40:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-2500px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:40:52','2021-09-13 01:40:52','',61,'https://flaphotography.com/?p=370',0,'revision','',0),(366,1,'2021-09-13 01:39:23','2021-09-13 01:39:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-2500px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:39:23','2021-09-13 01:39:23','',61,'https://flaphotography.com/?p=366',0,'revision','',0),(950,1,'2021-12-06 11:47:49','2021-12-06 11:47:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" text_font=\"Arial||||||||\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $325 minus 20% off = $260\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $600 minus 20% off = $480\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, red, and brown.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-06 11:47:49','2021-12-06 11:47:49','',61,'https://flaphotography.com/?p=950',0,'revision','',0),(882,1,'2021-11-02 21:25:45','2021-11-02 21:25:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-11-02 21:25:45','2021-11-02 21:25:45','',61,'https://flaphotography.com/?p=882',0,'revision','',0),(371,1,'2021-09-13 01:41:15','2021-09-13 01:41:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-2500px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:41:15','2021-09-13 01:41:15','',61,'https://flaphotography.com/?p=371',0,'revision','',0),(380,1,'2021-09-13 02:14:19','2021-09-13 02:14:19','','','','inherit','open','closed','','kassi-studio-set-shot-1200px','','','2022-07-12 15:34:52','2022-07-12 15:34:52','',0,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg',0,'attachment','image/jpeg',0),(379,1,'2021-09-13 01:53:34','2021-09-13 01:53:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/kass-studio-set.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"kass studio set\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:53:34','2021-09-13 01:53:34','',61,'https://flaphotography.com/?p=379',0,'revision','',0),(378,1,'2021-09-13 01:53:13','2021-09-13 01:53:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/kass-studio-set.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"kass studio set\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:53:13','2021-09-13 01:53:13','',61,'https://flaphotography.com/?p=378',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (377,1,'2021-09-13 01:52:32','2021-09-13 01:52:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/kass-studio-set.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"kass studio set\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:52:32','2021-09-13 01:52:32','',61,'https://flaphotography.com/?p=377',0,'revision','',0),(374,1,'2021-09-13 01:50:11','2021-09-13 01:50:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/kass-studio-set.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"kass studio set\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:50:11','2021-09-13 01:50:11','',61,'https://flaphotography.com/?p=374',0,'revision','',0),(375,1,'2021-09-13 01:50:33','2021-09-13 01:50:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/kass-studio-set.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"kass studio set\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 01:50:33','2021-09-13 01:50:33','',61,'https://flaphotography.com/?p=375',0,'revision','',0),(381,1,'2021-09-13 02:14:39','2021-09-13 02:14:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 02:14:39','2021-09-13 02:14:39','',61,'https://flaphotography.com/?p=381',0,'revision','',0),(382,1,'2021-09-13 02:24:30','2021-09-13 02:24:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 02:24:30','2021-09-13 02:24:30','',61,'https://flaphotography.com/?p=382',0,'revision','',0),(384,1,'2021-09-13 02:25:39','2021-09-13 02:25:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 02:25:39','2021-09-13 02:25:39','',61,'https://flaphotography.com/?p=384',0,'revision','',0),(385,1,'2021-09-13 02:27:59','2021-09-13 02:27:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\" title_text=\"Tina_MG_9256-HEAD-1500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:27:59','2021-09-13 02:27:59','',9,'https://flaphotography.com/?p=385',0,'revision','',0),(421,1,'2021-09-13 15:44:34','2021-09-13 15:44:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"32px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:44:34','2021-09-13 15:44:34','',9,'https://flaphotography.com/?p=421',0,'revision','',0),(411,1,'2021-09-13 15:17:59','2021-09-13 15:17:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-4000PX-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"Bishop-Couple3_2216-4000PX\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:17:59','2021-09-13 15:17:59','',9,'https://flaphotography.com/?p=411',0,'revision','',0),(386,1,'2021-09-13 02:28:41','2021-09-13 02:28:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\" title_text=\"Tina_MG_9256-HEAD-1500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:28:41','2021-09-13 02:28:41','',9,'https://flaphotography.com/?p=386',0,'revision','',0),(646,1,'2021-10-07 00:15:04','2021-10-07 00:15:04','','','','inherit','open','closed','','andrew-boss-img_2437-4000px-freq2','','','2022-06-29 04:11:52','2022-06-29 04:11:52','',0,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg',0,'attachment','image/jpeg',0),(393,1,'2021-09-13 02:40:04','2021-09-13 02:40:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX2-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:40:04','2021-09-13 02:40:04','',9,'https://flaphotography.com/?p=393',0,'revision','',0),(390,1,'2021-09-13 02:35:49','2021-09-13 02:35:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\" title_text=\"Tina_MG_9256-HEAD-1500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX2-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:35:49','2021-09-13 02:35:49','',9,'https://flaphotography.com/?p=390',0,'revision','',0),(409,1,'2021-09-13 15:12:50','2021-09-13 15:12:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:12:50','2021-09-13 15:12:50','',9,'https://flaphotography.com/?p=409',0,'revision','',0),(388,1,'2021-09-13 02:34:12','2021-09-13 02:34:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\" title_text=\"Tina_MG_9256-HEAD-1500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:34:12','2021-09-13 02:34:12','',9,'https://flaphotography.com/?p=388',0,'revision','',0),(392,1,'2021-09-13 02:39:27','2021-09-13 02:39:27','','','','inherit','open','closed','','andrew-boss-img_2437-4000px-crop','','','2022-07-12 15:34:49','2022-07-12 15:34:49','',0,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP.jpg',0,'attachment','image/jpeg',0),(394,1,'2021-09-13 02:40:52','2021-09-13 02:40:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.33)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:40:52','2021-09-13 02:40:52','',9,'https://flaphotography.com/?p=394',0,'revision','',0),(397,1,'2021-09-13 02:43:05','2021-09-13 02:43:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||59px||false|false\" custom_margin_phone=\"||64px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_margin_tablet=\"||60px||false|false\" custom_margin_phone=\"||76px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(12,113,195,0.61)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:43:05','2021-09-13 02:43:05','',9,'https://flaphotography.com/?p=397',0,'revision','',0),(404,1,'2021-09-13 11:43:46','2021-09-13 11:43:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" sticky_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 11:43:46','2021-09-13 11:43:46','',9,'https://flaphotography.com/?p=404',0,'revision','',0),(400,1,'2021-09-13 02:46:38','2021-09-13 02:46:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" sticky_enabled=\"0\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||||\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:46:38','2021-09-13 02:46:38','',9,'https://flaphotography.com/?p=400',0,'revision','',0),(407,1,'2021-09-13 12:05:19','2021-09-13 12:05:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 12:05:19','2021-09-13 12:05:19','',9,'https://flaphotography.com/?p=407',0,'revision','',0),(399,1,'2021-09-13 02:45:01','2021-09-13 02:45:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE HEADSHOT</h1>\n<p>Magnify the image with a click.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\" title_text=\"Alicia_MG_9295-HEAD-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Men-lucie_MG_9315-2500px.jpg\" title_text=\"Men-lucie_MG_9315-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" border_radii=\"off||60px||\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE HEADSHOT','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 02:45:01','2021-09-13 02:45:01','',9,'https://flaphotography.com/?p=399',0,'revision','',0),(402,1,'2021-09-13 02:58:17','2021-09-13 02:58:17','','','','inherit','open','closed','','marvelous-2000pxcrop2','','','2022-07-12 15:34:47','2022-07-12 15:34:47','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg',0,'attachment','image/jpeg',0),(405,1,'2021-09-13 11:44:24','2021-09-13 11:44:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 11:44:24','2021-09-13 11:44:24','',85,'https://flaphotography.com/?p=405',0,'revision','',0),(403,1,'2021-09-13 02:58:59','2021-09-13 02:58:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Marvelous-2000pXCROP2\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"28px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"36px\" header_letter_spacing=\"8px\" custom_margin=\"||||false|false\" custom_padding=\"15px||||false|false\" header_font_size_tablet=\"28px\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|desktop\"]<h1>FLAP PHOTOGRAPHY</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-13 02:58:59','2021-09-13 02:58:59','',85,'https://flaphotography.com/?p=403',0,'revision','',0),(408,1,'2021-09-13 15:08:33','2021-09-13 15:08:33','','','','inherit','open','closed','','pastor-tra-black-mo-colvin-2500px','','','2022-07-12 15:34:41','2022-07-12 15:34:41','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px.jpg',0,'attachment','image/jpeg',0),(414,1,'2021-09-13 15:26:43','2021-09-13 15:26:43','','','','inherit','open','closed','','bishop-couple3_2216-2000px','','','2022-07-12 15:34:45','2022-07-12 15:34:45','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px.jpg',0,'attachment','image/jpeg',0),(412,1,'2021-09-13 15:21:33','2021-09-13 15:21:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-4000PX-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"Bishop-Couple3_2216-4000PX\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:21:33','2021-09-13 15:21:33','',9,'https://flaphotography.com/?p=412',0,'revision','',0),(413,1,'2021-09-13 15:21:51','2021-09-13 15:21:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-4000PX-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"Bishop-Couple3_2216-4000PX\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:21:51','2021-09-13 15:21:51','',9,'https://flaphotography.com/?p=413',0,'revision','',0),(415,1,'2021-09-13 15:27:06','2021-09-13 15:27:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"Bishop-Couple3_2216-2000px\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 15:27:06','2021-09-13 15:27:06','',9,'https://flaphotography.com/?p=415',0,'revision','',0),(417,1,'2021-09-13 15:35:33','2021-09-13 15:35:33','','','','inherit','open','closed','','family-img_2462-2000px','','','2022-07-12 15:34:39','2022-07-12 15:34:39','',0,'https://flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (420,1,'2021-09-13 15:42:29','2021-09-13 15:42:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" custom_padding=\"33px||32px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-13 15:42:29','2021-09-13 15:42:29','',25,'https://flaphotography.com/?p=420',0,'revision','',0),(419,1,'2021-09-13 15:39:42','2021-09-13 15:39:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-13 15:39:42','2021-09-13 15:39:42','',25,'https://flaphotography.com/?p=419',0,'revision','',0),(458,1,'2021-09-15 00:02:31','2021-09-15 00:02:31','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-15 00:02:31','2021-09-15 00:02:31','',367,'https://flaphotography.com/?p=458',0,'revision','',0),(423,1,'2021-09-13 15:50:19','2021-09-13 15:50:19','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-13 15:50:19','2021-09-13 15:50:19','',367,'https://flaphotography.com/?p=423',0,'revision','',0),(430,1,'2022-03-25 00:25:49','2021-09-13 23:08:11',' ','','','publish','closed','closed','','430','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=430',8,'nav_menu_item','',0),(1194,1,'2022-03-24 23:20:49','2022-03-24 23:20:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" z_index=\"auto\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-03-24 23:20:49','2022-03-24 23:20:49','',98,'https://flaphotography.com/?p=1194',0,'revision','',0),(425,1,'2021-09-13 16:04:44','2021-09-13 16:04:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" custom_margin=\"15px||||false|false\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" content_font_size_last_edited=\"on|phone\" content_font_size_phone=\"14px\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-09-13 16:04:44','2021-09-13 16:04:44','',98,'https://flaphotography.com/?p=425',0,'revision','',0),(451,1,'2021-09-13 23:41:06','2021-09-13 23:41:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 23:41:06','2021-09-13 23:41:06','',9,'https://flaphotography.com/?p=451',0,'revision','',0),(428,1,'2021-09-13 23:03:12','2021-09-13 23:03:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"26px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians shots</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" show_in_lightbox=\"on\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" show_in_lightbox=\"on\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" show_in_lightbox=\"on\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-13 23:03:12','2021-09-13 23:03:12','',9,'https://flaphotography.com/?p=428',0,'revision','',0),(432,1,'2021-09-13 23:10:43','2021-09-13 23:10:43','[et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Photography: Corporate Headshots, Portraits, Modeling-Product Photography, Family Photoshoots, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\"]<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:10:43','2021-09-13 23:10:43','',214,'https://flaphotography.com/?p=432',0,'revision','',0),(433,1,'2021-09-13 23:11:12','2021-09-13 23:11:12','[et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Photography: Corporate Headshots, Portraits, Modeling-Product Photography, Family Photoshoots, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:11:12','2021-09-13 23:11:12','',214,'https://flaphotography.com/?p=433',0,'revision','',0),(434,1,'2021-09-13 23:13:54','2021-09-13 23:13:54','[et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate shots, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:13:54','2021-09-13 23:13:54','',214,'https://flaphotography.com/?p=434',0,'revision','',0),(1037,1,'2021-12-09 13:42:42','2021-12-09 13:42:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" global_colors_info=\"{}\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"47px||||false|false\" custom_margin_tablet=\"55px||||false|false\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-12-09 13:42:42','2021-12-09 13:42:42','',214,'https://flaphotography.com/?p=1037',0,'revision','',0),(435,1,'2021-09-13 23:15:50','2021-09-13 23:15:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate shots, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:15:50','2021-09-13 23:15:50','',214,'https://flaphotography.com/?p=435',0,'revision','',0),(436,1,'2021-09-13 23:17:09','2021-09-13 23:17:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:17:09','2021-09-13 23:17:09','',214,'https://flaphotography.com/?p=436',0,'revision','',0),(437,1,'2021-09-13 23:17:29','2021-09-13 23:17:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png\" title_text=\"KASSI-BUSINESS-MAN-1500-PX-TRA-SHA\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:17:29','2021-09-13 23:17:29','',214,'https://flaphotography.com/?p=437',0,'revision','',0),(439,1,'2021-09-13 23:21:43','2021-09-13 23:21:43','','','','inherit','open','closed','','kassi-the-photographer3-img_2291-1-4000px','','','2022-07-12 15:34:37','2022-07-12 15:34:37','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px.jpg',0,'attachment','image/jpeg',0),(440,1,'2021-09-13 23:22:11','2021-09-13 23:22:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:22:11','2021-09-13 23:22:11','',214,'https://flaphotography.com/?p=440',0,'revision','',0),(442,1,'2021-09-13 23:24:24','2021-09-13 23:24:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.0.9\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" custom_padding_last_edited=\"on|tablet\" admin_label=\"About Us Area\" _builder_version=\"4.0.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||273px||\" custom_margin_tablet=\"|auto||30px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"27px|0px|0px|0px\" custom_padding_tablet=\"27px||||false|false\" custom_padding_phone=\"\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.4em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Photography: Corporate, Fashion, Modeling-Product, Couples, &amp; Post Production Services</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<ul>\n<li>Graphic Design, Web Design, &amp; Logo Design.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Since 2019, parent company <a href=\"https://flapstart.com\" target=\"_blank\" rel=\"noopener\">FlapStart.com</a>.</li>\n</ul>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.9.7\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" link_text_color=\"#d66e5c\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"16px\" ul_line_height=\"1.2em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"rgba(0,0,0,0.77)\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"218px|0px\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" width=\"69%\" width_tablet=\"86%\" width_phone=\"100%\" width_last_edited=\"on|desktop\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||||false|false\" custom_padding=\"18px|31px|1px|31px|false|true\" custom_padding_tablet=\"\" custom_padding_phone=\"18px|10px|1px|10px|false|true\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\" sticky_enabled=\"0\"]<ul>\n<li>Contact: 416-858-5737, Toronto, ON</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding_tablet=\"0px|272px|0px||false|false\" custom_padding_phone=\"|62px|||false|false\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\" title_text=\"Kassi-The-Photographer3-IMG_2291-1-4000px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-126px\" transform_translate_tablet=\"0px|-53px\" transform_translate_phone=\"0px|-56px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"16px\" text_letter_spacing=\"2px\" text_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.7)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-146px\" transform_translate_tablet=\"0px|-74px\" transform_translate_phone=\"0px|-74px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" text_orientation=\"center\" custom_padding=\"15px|0px|15px|0px|true|true\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"]<p>KASSI J.</p>\n<p>Photographer &amp; Graphic Designer</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT','','inherit','closed','closed','','214-revision-v1','','','2021-09-13 23:24:24','2021-09-13 23:24:24','',214,'https://flaphotography.com/?p=442',0,'revision','',0),(443,1,'2021-09-13 23:29:08','2021-09-13 23:29:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"37px||34px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 23:29:08','2021-09-13 23:29:08','',61,'https://flaphotography.com/?p=443',0,'revision','',0),(444,1,'2021-09-13 23:29:46','2021-09-13 23:29:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"32px||34px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 23:29:46','2021-09-13 23:29:46','',61,'https://flaphotography.com/?p=444',0,'revision','',0),(445,1,'2021-09-13 23:30:29','2021-09-13 23:30:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"32px||34px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 23:30:29','2021-09-13 23:30:29','',61,'https://flaphotography.com/?p=445',0,'revision','',0),(446,1,'2021-09-13 23:31:04','2021-09-13 23:31:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"32px||34px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 23:31:04','2021-09-13 23:31:04','',61,'https://flaphotography.com/?p=446',0,'revision','',0),(447,1,'2021-09-13 23:31:49','2021-09-13 23:31:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" custom_padding=\"32px||34px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" show_in_lightbox=\"on\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-13 23:31:49','2021-09-13 23:31:49','',61,'https://flaphotography.com/?p=447',0,'revision','',0),(449,1,'2021-09-13 23:37:22','2021-09-13 23:37:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-13 23:37:22','2021-09-13 23:37:22','',25,'https://flaphotography.com/?p=449',0,'revision','',0),(582,1,'2021-09-20 14:36:50','2021-09-20 14:36:50','','','','inherit','open','closed','','ash-the-king-and-queen-img_0001_2500px-crop','','','2022-07-12 15:34:26','2022-07-12 15:34:26','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP.jpg',0,'attachment','image/jpeg',0),(452,1,'2021-09-14 00:03:30','2021-09-14 00:03:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-14 00:03:30','2021-09-14 00:03:30','',9,'https://flaphotography.com/?p=452',0,'revision','',0),(453,1,'2021-09-14 00:04:01','2021-09-14 00:04:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-14 00:04:01','2021-09-14 00:04:01','',9,'https://flaphotography.com/?p=453',0,'revision','',0),(454,1,'2021-09-14 00:07:00','2021-09-14 00:07:00','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-09-14 00:07:00','2021-09-14 00:07:00','',197,'https://flaphotography.com/?p=454',0,'revision','',0),(753,1,'2021-10-17 17:46:56','2021-10-17 17:46:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-17 17:46:56','2021-10-17 17:46:56','',61,'https://flaphotography.com/?p=753',0,'revision','',0),(460,1,'2021-09-15 00:52:06','2021-09-15 00:52:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 00:52:06','2021-09-15 00:52:06','',61,'https://flaphotography.com/?p=460',0,'revision','',0),(459,1,'2021-09-15 00:02:34','2021-09-15 00:02:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 00:02:34','2021-09-15 00:02:34','',61,'https://flaphotography.com/?p=459',0,'revision','',0),(455,1,'2021-09-14 00:09:04','2021-09-14 00:09:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-14 00:09:04','2021-09-14 00:09:04','',61,'https://flaphotography.com/?p=455',0,'revision','',0),(456,1,'2021-09-14 00:15:46','2021-09-14 00:15:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"https://flapstart.com\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-14 00:15:46','2021-09-14 00:15:46','',25,'https://flaphotography.com/?p=456',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (461,1,'2021-09-15 00:55:03','2021-09-15 00:55:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 00:55:03','2021-09-15 00:55:03','',61,'https://flaphotography.com/?p=461',0,'revision','',0),(462,1,'2021-09-15 11:17:43','2021-09-15 11:17:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 11:17:43','2021-09-15 11:17:43','',61,'https://flaphotography.com/?p=462',0,'revision','',0),(463,1,'2021-09-15 11:21:13','2021-09-15 11:21:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.13.1\" _module_preset=\"default\" _unique_id=\"226c1f60-302d-4b0b-8290-bb0df33fe8a7\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','private','closed','closed','','promotion','','','2021-12-20 03:05:52','2021-12-20 03:05:52','',0,'https://flaphotography.com/?page_id=463',0,'page','',0),(615,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','Security Dashboard','','publish','closed','closed','','security-dashboard','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',0,'https://flaphotography.com/itsec-dashboard/security-dashboard/',0,'itsec-dashboard','',0),(465,1,'2021-09-15 11:21:13','2021-09-15 11:21:13','','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:21:13','2021-09-15 11:21:13','',463,'https://flaphotography.com/?p=465',0,'revision','',0),(466,1,'2021-09-15 11:25:59','2021-09-15 11:25:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:25:59','2021-09-15 11:25:59','',463,'https://flaphotography.com/?p=466',0,'revision','',0),(468,1,'2021-09-15 11:30:17','2021-09-15 11:30:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>You must kindly share one of our facebook or instagram posts on your social media feed.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"SIGN UP FOR FREE STUDIO TIME\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A model%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22An individual%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22A family / Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businessname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A family / Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:30:17','2021-09-15 11:30:17','',463,'https://flaphotography.com/?p=468',0,'revision','',0),(471,1,'2021-09-15 11:36:28','2021-09-15 11:36:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off promotion\" posted on our facebook or instagram page. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A model%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22An individual%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22A family / Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businessname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A family / Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:36:28','2021-09-15 11:36:28','',463,'https://flaphotography.com/?p=471',0,'revision','',0),(470,1,'2021-09-15 11:34:27','2021-09-15 11:34:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off promotion\" posted on our facebook or instagram page. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"SIGN UP FOR FREE STUDIO TIME\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A model%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22An individual%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22A family / Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businessname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A family / Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:34:27','2021-09-15 11:34:27','',463,'https://flaphotography.com/?p=470',0,'revision','',0),(549,1,'2021-09-17 22:54:36','2021-09-17 22:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 22:54:36','2021-09-17 22:54:36','',463,'https://flaphotography.com/?p=549',0,'revision','',0),(487,1,'2021-09-15 12:12:45','2021-09-15 12:12:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 12:12:45','2021-09-15 12:12:45','',463,'https://flaphotography.com/?p=487',0,'revision','',0),(472,1,'2021-09-15 11:42:39','2021-09-15 11:42:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:42:39','2021-09-15 11:42:39','',463,'https://flaphotography.com/?p=472',0,'revision','',0),(473,1,'2021-09-15 11:43:21','2021-09-15 11:43:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:43:21','2021-09-15 11:43:21','',463,'https://flaphotography.com/?p=473',0,'revision','',0),(474,1,'2021-09-15 11:45:18','2021-09-15 11:45:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF SIGN UP</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:45:18','2021-09-15 11:45:18','',463,'https://flaphotography.com/?p=474',0,'revision','',0),(475,1,'2021-09-15 11:46:09','2021-09-15 11:46:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:46:09','2021-09-15 11:46:09','',463,'https://flaphotography.com/?p=475',0,'revision','',0),(477,1,'2021-09-15 11:52:58','2021-09-15 11:52:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:52:58','2021-09-15 11:52:58','',463,'https://flaphotography.com/?p=477',0,'revision','',0),(476,1,'2021-09-15 11:49:57','2021-09-15 11:49:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"couplenames\" field_title=\"Names of the Couple\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:49:57','2021-09-15 11:49:57','',463,'https://flaphotography.com/?p=476',0,'revision','',0),(478,1,'2021-09-15 11:53:49','2021-09-15 11:53:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_border_radius=\"22px\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:53:49','2021-09-15 11:53:49','',463,'https://flaphotography.com/?p=478',0,'revision','',0),(479,1,'2021-09-15 11:55:46','2021-09-15 11:55:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:55:46','2021-09-15 11:55:46','',463,'https://flaphotography.com/?p=479',0,'revision','',0),(480,1,'2021-09-15 11:57:32','2021-09-15 11:57:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"17px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:57:32','2021-09-15 11:57:32','',463,'https://flaphotography.com/?p=480',0,'revision','',0),(481,1,'2021-09-15 11:58:18','2021-09-15 11:58:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:58:18','2021-09-15 11:58:18','',463,'https://flaphotography.com/?p=481',0,'revision','',0),(483,1,'2021-09-15 11:59:22','2021-09-15 11:59:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" width_last_edited=\"on|phone\" width_phone=\"90%\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. SIGN UP \" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks! Your sign up has been submitted.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 11:59:22','2021-09-15 11:59:22','',463,'https://flaphotography.com/?p=483',0,'revision','',0),(486,1,'2021-09-15 12:07:44','2021-09-15 12:07:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 12:07:44','2021-09-15 12:07:44','',463,'https://flaphotography.com/?p=486',0,'revision','',0),(485,1,'2021-09-15 12:01:40','2021-09-15 12:01:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" width_last_edited=\"on|phone\" width_phone=\"90%\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:1,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22An individual%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 12:01:40','2021-09-15 12:01:40','',463,'https://flaphotography.com/?p=485',0,'revision','',0),(1128,1,'2021-12-19 03:48:33','2021-12-19 03:48:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" menu_style=\"centered\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-12-19 03:48:33','2021-12-19 03:48:33','',234,'https://flaphotography.com/?p=1128',0,'revision','',0),(489,1,'2021-09-15 12:17:45','2021-09-15 12:17:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"88%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 12:17:45','2021-09-15 12:17:45','',234,'https://flaphotography.com/?p=489',0,'revision','',0),(490,1,'2021-09-15 12:18:02','2021-09-15 12:18:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"17px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 12:18:02','2021-09-15 12:18:02','',234,'https://flaphotography.com/?p=490',0,'revision','',0),(491,1,'2021-09-15 12:18:25','2021-09-15 12:18:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 12:18:25','2021-09-15 12:18:25','',234,'https://flaphotography.com/?p=491',0,'revision','',0),(547,1,'2021-09-17 17:15:09','2021-09-17 17:15:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 17:15:09','2021-09-17 17:15:09','',463,'https://flaphotography.com/?p=547',0,'revision','',0),(492,1,'2021-09-15 12:18:27','2021-09-15 12:18:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PHOTO PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-15 12:18:27','2021-09-15 12:18:27','',463,'https://flaphotography.com/?p=492',0,'revision','',0),(493,1,'2021-09-15 17:59:00','2021-09-15 17:59:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 17:59:00','2021-09-15 17:59:00','',234,'https://flaphotography.com/?p=493',0,'revision','',0),(497,1,'2021-09-15 18:07:08','2021-09-15 18:07:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 18:07:08','2021-09-15 18:07:08','',234,'https://flaphotography.com/?p=497',0,'revision','',0),(494,1,'2021-09-15 18:04:37','2021-09-15 18:04:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" z_index=\"auto\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 18:04:37','2021-09-15 18:04:37','',234,'https://flaphotography.com/?p=494',0,'revision','',0),(495,1,'2021-09-15 18:04:57','2021-09-15 18:04:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" z_index=\"auto\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 18:04:57','2021-09-15 18:04:57','',61,'https://flaphotography.com/?p=495',0,'revision','',0),(733,1,'2021-10-14 11:54:21','2021-10-14 11:54:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-10-14 11:54:21','2021-10-14 11:54:21','',234,'https://flaphotography.com/?p=733',0,'revision','',0),(498,1,'2021-09-15 18:07:18','2021-09-15 18:07:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-09-15 18:07:18','2021-09-15 18:07:18','',234,'https://flaphotography.com/?p=498',0,'revision','',0),(499,1,'2021-09-15 18:07:20','2021-09-15 18:07:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 5 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-15 18:07:20','2021-09-15 18:07:20','',61,'https://flaphotography.com/?p=499',0,'revision','',0),(810,1,'2021-10-20 11:15:14','2021-10-20 11:15:14','','','','inherit','open','closed','','noelle-headshot-img_5345-2500px3','','','2022-07-12 15:33:25','2022-07-12 15:33:25','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg',0,'attachment','image/jpeg',0),(809,1,'2021-10-20 11:00:59','2021-10-20 11:00:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-20 11:00:59','2021-10-20 11:00:59','',61,'https://flaphotography.com/?p=809',0,'revision','',0),(658,1,'2021-10-07 03:13:21','2021-10-07 03:13:21','','','','inherit','open','closed','','lady-p-img_2221-2000px-fq','','','2022-06-29 04:11:26','2022-06-29 04:11:26','',0,'https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg',0,'attachment','image/jpeg',0),(579,1,'2021-09-20 14:10:13','2021-09-20 14:10:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 14:10:13','2021-09-20 14:10:13','',9,'https://flaphotography.com/?p=579',0,'revision','',0),(801,1,'2021-10-20 00:45:04','2021-10-20 00:45:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" z_index=\"auto\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.0.9\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.0.9\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.0.9\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"123,112,113,127,734,733,732\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"126,133,130,129\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"740,739,741,151,150,149\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"MERGING \" _builder_version=\"4.9.7\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2021-10-20 00:45:04','2021-10-20 00:45:04','',98,'https://flaphotography.com/?p=801',0,'revision','',0),(642,1,'2021-10-06 23:34:37','2021-10-06 23:34:37','','','','inherit','open','closed','','morlon_mg_9412-head-2500px2','','','2022-06-29 04:11:58','2022-06-29 04:11:58','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg',0,'attachment','image/jpeg',0),(1371,1,'2022-07-01 02:54:59','2022-07-01 02:54:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 02:54:59','2022-07-01 02:54:59','',9,'https://flaphotography.com/?p=1371',0,'revision','',0),(577,1,'2021-09-20 13:17:07','2021-09-20 13:17:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 13:17:07','2021-09-20 13:17:07','',9,'https://flaphotography.com/?p=577',0,'revision','',0),(572,1,'2021-09-20 12:42:30','2021-09-20 12:42:30','','','','inherit','open','closed','','lucie_mg_9282-2500px-rnw','','','2022-07-12 15:34:31','2022-07-12 15:34:31','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg',0,'attachment','image/jpeg',0),(574,1,'2021-09-20 12:43:43','2021-09-20 12:43:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 12:43:43','2021-09-20 12:43:43','',9,'https://flaphotography.com/?p=574',0,'revision','',0),(575,1,'2021-09-20 12:44:25','2021-09-20 12:44:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 12:44:25','2021-09-20 12:44:25','',9,'https://flaphotography.com/?p=575',0,'revision','',0),(802,1,'2021-10-20 00:46:32','2021-10-20 00:46:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"||12px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#FFFFFF\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#bcbcbc\" text_font_size=\"18px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"31px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"24px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>WEDDING PHOTOGRAPHY</h1>\r\nMagnify the image with a click.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(182,71,60,0.87)\" background_color_gradient_end=\"rgba(0,0,0,0.92)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"94%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1490px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>SMALL PLAN $1,599</h1>\r[/et_pb_text][et_pb_blurb title=\"5 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 2 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"50 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 25 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>STANDARD PLAN $1,999</h1>\r[/et_pb_text][et_pb_blurb title=\"8 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\" title__hover_enabled=\"on|desktop\"][/et_pb_blurb][et_pb_blurb title=\"Up to 3 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"60 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 30 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|desktop\"]<h1>PREMIUM PLAN $2,599</h1>\r[/et_pb_text][et_pb_blurb title=\"10 hours of shooting.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Bonus offer: 1 hour photo booth shooting as part of 10 hours mark (portable studio lighting set). \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Up to 4 shooting locations (one is the ceremony).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"75 retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery for viewing and choosing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Extra hour of shooting due to delays or late start of the ceremony will cost $30 / hour extra.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Delivery: for a sneak peek, the first 7 edited photos will be delivered within 7 business days. The remainder of the photos will be delivered through a dropbox download link within 35 business days. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the final representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>\r[/et_pb_text][et_pb_blurb title=\"Exposure adjustment.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Removing minor background distractions.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Outfit minor stains removal. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\r\n<ul>\r\n 	<li>Outfit color change, $29 / image.</li>\r\n 	<li>Lipstick and finger nails color change (including toes), $29 / image.</li>\r\n 	<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.</li>\r\n 	<li>Background color change, $29 / image.</li>\r\n 	<li>Background replacement for a different scene, $45 / image.</li>\r\n 	<li>Facial dodging and burning, $19 / image.</li>\r\n</ul>\r[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','WEDDING PHOTOGRAPHY','','inherit','closed','closed','','71-revision-v1','','','2021-10-20 00:46:32','2021-10-20 00:46:32','',71,'https://flaphotography.com/?p=802',0,'revision','',0),(573,1,'2021-09-20 12:43:28','2021-09-20 12:43:28','','','','inherit','open','closed','','lucie_mg_9282-2500px-m-view-rnw','','','2022-07-12 15:34:28','2022-07-12 15:34:28','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (570,1,'2021-09-20 03:03:58','2021-09-20 03:03:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" src_last_edited=\"on|phone\" sticky_enabled=\"0\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-CROP.jpg\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 03:03:58','2021-09-20 03:03:58','',9,'https://flaphotography.com/?p=570',0,'revision','',0),(581,1,'2021-09-20 14:12:16','2021-09-20 14:12:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 14:12:16','2021-09-20 14:12:16','',9,'https://flaphotography.com/?p=581',0,'revision','',0),(830,1,'2021-10-23 04:43:37','2021-10-23 04:43:37','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: white;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: black!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-23 04:43:37','2021-10-23 04:43:37','',197,'https://flaphotography.com/?p=830',0,'revision','',0),(567,1,'2021-09-20 02:59:12','2021-09-20 02:59:12','','','','inherit','open','closed','','meranda_mg_9390-2500px-rnew-crop','','','2022-07-12 15:34:33','2022-07-12 15:34:33','',0,'https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg',0,'attachment','image/jpeg',0),(568,1,'2021-09-20 02:59:28','2021-09-20 02:59:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 02:59:28','2021-09-20 02:59:28','',9,'https://flaphotography.com/?p=568',0,'revision','',0),(565,1,'2021-09-20 02:46:55','2021-09-20 02:46:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-1.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 02:46:55','2021-09-20 02:46:55','',9,'https://flaphotography.com/?p=565',0,'revision','',0),(540,1,'2021-09-17 01:29:58','2021-09-17 01:29:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-17 01:29:58','2021-09-17 01:29:58','',9,'https://flaphotography.com/?p=540',0,'revision','',0),(520,1,'2021-09-16 14:00:13','2021-09-16 14:00:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-16 14:00:13','2021-09-16 14:00:13','',9,'https://flaphotography.com/?p=520',0,'revision','',0),(519,1,'2021-09-16 13:58:44','2021-09-16 13:58:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" animation_delay=\"500ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" animation_delay=\"700ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-16 13:58:44','2021-09-16 13:58:44','',9,'https://flaphotography.com/?p=519',0,'revision','',0),(521,1,'2021-09-16 14:01:42','2021-09-16 14:01:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" animation_delay=\"200ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" animation_delay=\"300ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" animation_delay=\"200ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 7% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-16 14:01:42','2021-09-16 14:01:42','',9,'https://flaphotography.com/?p=521',0,'revision','',0),(522,1,'2021-09-16 23:01:17','2021-09-16 23:01:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 40% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-16 23:01:17','2021-09-16 23:01:17','',61,'https://flaphotography.com/?p=522',0,'revision','',0),(523,1,'2021-09-16 23:01:53','2021-09-16 23:01:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-16 23:01:53','2021-09-16 23:01:53','',61,'https://flaphotography.com/?p=523',0,'revision','',0),(630,1,'2021-10-04 15:29:19','2021-10-04 15:29:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px.jpg\" title_text=\"IMG_4237-1-PR-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-04 15:29:19','2021-10-04 15:29:19','',61,'https://flaphotography.com/?p=630',0,'revision','',0),(524,1,'2021-09-16 23:02:21','2021-09-16 23:02:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-16 23:02:21','2021-09-16 23:02:21','',61,'https://flaphotography.com/?p=524',0,'revision','',0),(628,1,'2021-10-04 15:27:16','2021-10-04 15:27:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px.jpg\" title_text=\"IMG_4237-1-PR-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-04 15:27:16','2021-10-04 15:27:16','',61,'https://flaphotography.com/?p=628',0,'revision','',0),(526,1,'2021-09-16 23:04:41','2021-09-16 23:04:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\" title_text=\"Set-Photography-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\" title_text=\"Flow-Marvi-Spark_MG_8496-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" sticky_enabled=\"0\" body_text_shadow_style=\"preset2\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-09-16 23:04:41','2021-09-16 23:04:41','',61,'https://flaphotography.com/?p=526',0,'revision','',0),(530,1,'2021-09-16 23:11:32','2021-09-16 23:11:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-16 23:11:32','2021-09-16 23:11:32','',9,'https://flaphotography.com/?p=530',0,'revision','',0),(529,1,'2021-09-16 23:09:27','2021-09-16 23:09:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\" title_text=\"Bishop-Couple3_2216-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 10% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-16 23:09:27','2021-09-16 23:09:27','',9,'https://flaphotography.com/?p=529',0,'revision','',0),(584,1,'2021-09-20 14:37:15','2021-09-20 14:37:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-20 14:37:15','2021-09-20 14:37:15','',25,'https://flaphotography.com/?p=584',0,'revision','',0),(535,1,'2021-09-16 23:21:33','2021-09-16 23:21:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" body_link_font=\"Arial||||||||\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" body_link_font=\"Arial||||||||\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-16 23:21:33','2021-09-16 23:21:33','',25,'https://flaphotography.com/?p=535',0,'revision','',0),(534,1,'2021-09-16 23:21:23','2021-09-16 23:21:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" body_link_font=\"Arial||||||||\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" body_link_font=\"Arial||||||||\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-16 23:21:23','2021-09-16 23:21:23','',25,'https://flaphotography.com/?p=534',0,'revision','',0),(818,1,'2021-10-21 13:44:38','2021-10-21 13:44:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-10-21 13:44:38','2021-10-21 13:44:38','',25,'https://flaphotography.com/?p=818',0,'revision','',0),(533,1,'2021-09-16 23:21:02','2021-09-16 23:21:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_1-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" body_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" body_link_font=\"Arial||||||||\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Ongoing Promotion: 15% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-16 23:21:02','2021-09-16 23:21:02','',25,'https://flaphotography.com/?p=533',0,'revision','',0),(1036,1,'2021-12-09 13:15:58','2021-12-09 13:15:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - ENDS DEC 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 20 OFF PROMO FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-12-09 13:15:58','2021-12-09 13:15:58','',85,'https://flaphotography.com/?p=1036',0,'revision','',0),(543,1,'2021-09-17 12:02:08','2021-09-17 12:02:08','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-17 12:02:08','2021-09-17 12:02:08','',367,'https://flaphotography.com/?p=543',0,'revision','',0),(538,1,'2021-09-17 01:28:03','2021-09-17 01:28:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"HUGE 40 OFF PROMO\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-17 01:28:03','2021-09-17 01:28:03','',367,'https://flaphotography.com/?p=538',0,'revision','',0),(586,1,'2021-09-20 14:54:09','2021-09-20 14:54:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 14:54:09','2021-09-20 14:54:09','',85,'https://flaphotography.com/?p=586',0,'revision','',0),(539,1,'2021-09-17 01:28:05','2021-09-17 01:28:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" hover_enabled=\"0\" title_text=\"HUGE 40 OFF PROMO\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"HUGE 40 OFF PROMO\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-17 01:28:05','2021-09-17 01:28:05','',85,'https://flaphotography.com/?p=539',0,'revision','',0),(542,1,'2021-09-17 01:31:08','2021-09-17 01:31:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" global_module=\"367\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-17 01:31:08','2021-09-17 01:31:08','',9,'https://flaphotography.com/?p=542',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (541,1,'2021-09-17 01:30:22','2021-09-17 01:30:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.0.9\" background_color=\"#d6d6d6\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.0.9\" text_font=\"Arial||||||||\" text_text_color=\"#1a6aaa\" text_font_size=\"29px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/corporate-headshot/\" button_text=\"Corporate Headshots\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6B6B6B\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/web-design\" url_new_window=\"on\" button_text=\"Web Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/about/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://fotopens.com/contact/\" button_text=\"Contact\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#6b6b6b\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||33px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\" _builder_version=\"4.9.7\" transform_scale=\"78%|78%\" transform_scale_tablet=\"52%|52%\" transform_scale_phone=\"76%|76%\" transform_scale_last_edited=\"on|phone\" transform_translate=\"0px|-20px\" transform_translate_tablet=\"1px|-19px\" transform_translate_phone=\"0px|-18px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"-32px|145px||-39px|false|false\" custom_margin_tablet=\"|0px||0px|false|false\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|tablet\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"251px|-135px\" transform_translate_tablet=\"134px|-32px\" transform_translate_phone=\"34px|-26px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#6b6b6b\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#6B6B6B\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_width=\"5px\" button_border_color=\"rgba(224,224,224,0.66)\" button_border_radius=\"24px\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|0px||0px|false|true\" custom_padding=\"||||false\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"HUGE 40 OFF PROMO\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-17 01:30:22','2021-09-17 01:30:22','',9,'https://flaphotography.com/?p=541',0,'revision','',0),(544,1,'2021-09-17 12:02:11','2021-09-17 12:02:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-Dark-Grey-1.jpg\" title_text=\"Lucie_MG_9282-2500px-Dark-Grey\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\" title_text=\"Requel_MG_9336-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX.jpg\" title_text=\"Meranda_MG_9390-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-17 12:02:11','2021-09-17 12:02:11','',9,'https://flaphotography.com/?p=544',0,'revision','',0),(548,1,'2021-09-17 17:16:03','2021-09-17 17:16:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" logo_width=\"87%\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22An Individual%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company and services\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://fotopens.com/wp-content/uploads/2021/06/Flap-Photography-Prom-Video-2.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p><a href=\"https://flaphotography.com/?et_fb=1&amp;PageSpeed=off#\" class=\"et-fb-save-library-button\">Import Divi Builder Layout</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 17:16:03','2021-09-17 17:16:03','',463,'https://flaphotography.com/?p=548',0,'revision','',0),(551,1,'2021-09-17 23:08:25','2021-09-17 23:08:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Whatshots\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:0}%93\" field_title=\"Please checkmark your needs.\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:08:25','2021-09-17 23:08:25','',463,'https://flaphotography.com/?p=551',0,'revision','',0),(554,1,'2021-09-17 23:10:19','2021-09-17 23:10:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of shots||et_pb_line_break_holder||%%whatshots%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Whatshots\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:0}%93\" field_title=\"Please checkmark your needs.\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:10:19','2021-09-17 23:10:19','',463,'https://flaphotography.com/?p=554',0,'revision','',0),(553,1,'2021-09-17 23:09:15','2021-09-17 23:09:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of shots||et_pb_line_break_holder||%%whatshots%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Whatshots\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:0}%93\" field_title=\"Please checkmark your needs.\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:09:15','2021-09-17 23:09:15','',463,'https://flaphotography.com/?p=553',0,'revision','',0),(555,1,'2021-09-17 23:11:19','2021-09-17 23:11:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of shots||et_pb_line_break_holder||%%whatshots%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Whatshots\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" field_title=\"Please checkmark your needs.\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:11:19','2021-09-17 23:11:19','',463,'https://flaphotography.com/?p=555',0,'revision','',0),(558,1,'2021-09-17 23:21:11','2021-09-17 23:21:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:21:11','2021-09-17 23:21:11','',463,'https://flaphotography.com/?p=558',0,'revision','',0),(557,1,'2021-09-17 23:15:56','2021-09-17 23:15:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||The name of the couples||et_pb_line_break_holder||%%couplenames%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:15:56','2021-09-17 23:15:56','',463,'https://flaphotography.com/?p=557',0,'revision','',0),(559,1,'2021-09-17 23:22:01','2021-09-17 23:22:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-09-17 23:22:01','2021-09-17 23:22:01','',463,'https://flaphotography.com/?p=559',0,'revision','',0),(589,1,'2021-09-20 15:10:26','2021-09-20 15:10:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:10:26','2021-09-20 15:10:26','',85,'https://flaphotography.com/?p=589',0,'revision','',0),(587,1,'2021-09-20 14:55:10','2021-09-20 14:55:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/HUGE-40-OFF-PROMO.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 14:55:10','2021-09-20 14:55:10','',85,'https://flaphotography.com/?p=587',0,'revision','',0),(680,1,'2021-10-09 22:58:05','2021-10-09 22:58:05','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-09 22:58:05','2021-10-09 22:58:05','',367,'https://flaphotography.com/?p=680',0,'revision','',0),(588,1,'2021-09-20 15:10:24','2021-09-20 15:10:24','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-20 15:10:24','2021-09-20 15:10:24','',367,'https://flaphotography.com/?p=588',0,'revision','',0),(590,1,'2021-09-20 15:12:03','2021-09-20 15:12:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:12:03','2021-09-20 15:12:03','',85,'https://flaphotography.com/?p=590',0,'revision','',0),(591,1,'2021-09-20 15:14:38','2021-09-20 15:14:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:14:38','2021-09-20 15:14:38','',85,'https://flaphotography.com/?p=591',0,'revision','',0),(592,1,'2021-09-20 15:15:12','2021-09-20 15:15:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:15:12','2021-09-20 15:15:12','',85,'https://flaphotography.com/?p=592',0,'revision','',0),(593,1,'2021-09-20 15:15:43','2021-09-20 15:15:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:15:43','2021-09-20 15:15:43','',85,'https://flaphotography.com/?p=593',0,'revision','',0),(594,1,'2021-09-20 15:16:39','2021-09-20 15:16:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|-32px\" transform_translate_phone=\"11px|-33px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:16:39','2021-09-20 15:16:39','',85,'https://flaphotography.com/?p=594',0,'revision','',0),(595,1,'2021-09-20 15:21:02','2021-09-20 15:21:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"202px|82px\" transform_translate_phone=\"54px|88px\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|tablet\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:21:02','2021-09-20 15:21:02','',85,'https://flaphotography.com/?p=595',0,'revision','',0),(597,1,'2021-09-20 15:37:41','2021-09-20 15:37:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:37:41','2021-09-20 15:37:41','',85,'https://flaphotography.com/?p=597',0,'revision','',0),(596,1,'2021-09-20 15:24:25','2021-09-20 15:24:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.0.9\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-19px||-21px|false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||0px||false|false\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|-18px||-18px|false|true\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-18px||-18px|false|true\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" sticky_enabled=\"0\" align_last_edited=\"on|tablet\" align_phone=\"center\" align_tablet=\"center\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"FLAP POMO-HUGE 40 OFF-SEP 20 2021-RNW\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:24:25','2021-09-20 15:24:25','',85,'https://flaphotography.com/?p=596',0,'revision','',0),(598,1,'2021-09-20 15:41:35','2021-09-20 15:41:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_color=\"#FFFFFF\" header_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size=\"40px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"30px\" header_font_size_tablet=\"35px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 15:41:35','2021-09-20 15:41:35','',85,'https://flaphotography.com/?p=598',0,'revision','',0),(601,1,'2021-09-20 16:31:21','2021-09-20 16:31:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" background_color=\"#000000\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 16:31:21','2021-09-20 16:31:21','',85,'https://flaphotography.com/?p=601',0,'revision','',0),(600,1,'2021-09-20 16:27:49','2021-09-20 16:27:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" background_color=\"#000000\" text_line_height=\"1.3em\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 16:27:49','2021-09-20 16:27:49','',85,'https://flaphotography.com/?p=600',0,'revision','',0),(815,1,'2021-10-21 13:26:32','2021-10-21 13:26:32','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 3\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-21 13:26:32','2021-10-21 13:26:32','',367,'https://flaphotography.com/?p=815',0,'revision','',0),(604,1,'2021-09-20 16:35:43','2021-09-20 16:35:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 16:35:43','2021-09-20 16:35:43','',85,'https://flaphotography.com/?p=604',0,'revision','',0),(605,1,'2021-09-20 16:36:29','2021-09-20 16:36:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-20 16:36:29','2021-09-20 16:36:29','',85,'https://flaphotography.com/?p=605',0,'revision','',0),(608,1,'2021-09-20 21:54:42','2021-09-20 21:54:42','','','','inherit','open','closed','','ash-the-queen-img_0008_-3000pxrnw2','','','2022-06-29 04:11:46','2022-06-29 04:11:46','',0,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2.jpg',0,'attachment','image/jpeg',0),(607,1,'2021-09-20 21:40:54','2021-09-20 21:40:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-20 21:40:54','2021-09-20 21:40:54','',25,'https://flaphotography.com/?p=607',0,'revision','',0),(756,1,'2021-10-17 17:54:56','2021-10-17 17:54:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-10-17 17:54:56','2021-10-17 17:54:56','',25,'https://flaphotography.com/?p=756',0,'revision','',0),(609,1,'2021-09-20 21:55:18','2021-09-20 21:55:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-20 21:55:18','2021-09-20 21:55:18','',25,'https://flaphotography.com/?p=609',0,'revision','',0),(610,1,'2021-09-20 22:04:30','2021-09-20 22:04:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\" title_text=\"Ash-and-X-The-King-Son-IMG_0022-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-GAZE-IMG_0003_3-3000PX-scaled-1-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$57.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 6 photos, $57.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $85.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 12 retouched photos bundle.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#0cbad1\" body_link_font_size=\"18px\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-09-20 22:04:30','2021-09-20 22:04:30','',25,'https://flaphotography.com/?p=610',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (613,1,'2021-09-21 11:39:57','2021-09-21 11:39:57','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-09-21 11:39:57','2021-09-21 11:39:57','',367,'https://flaphotography.com/?p=613',0,'revision','',0),(614,1,'2021-09-21 11:39:59','2021-09-21 11:39:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-09-21 11:39:59','2021-09-21 11:39:59','',85,'https://flaphotography.com/?p=614',0,'revision','',0),(612,1,'2021-09-20 23:23:56','2021-09-20 23:23:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-2000PX7-scaled-1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-20 23:23:56','2021-09-20 23:23:56','',9,'https://flaphotography.com/?p=612',0,'revision','',0),(616,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','616','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/616/',0,'itsec-dash-card','',0),(617,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','617','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/617/',0,'itsec-dash-card','',0),(618,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','618','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/618/',0,'itsec-dash-card','',0),(619,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','619','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/619/',0,'itsec-dash-card','',0),(620,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','620','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/620/',0,'itsec-dash-card','',0),(621,1,'2021-09-25 15:30:16','2021-09-25 15:30:16','','','','publish','closed','closed','','621','','','2021-09-25 15:30:16','2021-09-25 15:30:16','',615,'https://flaphotography.com/itsec-dash-card/621/',0,'itsec-dash-card','',0),(622,1,'2021-09-25 15:33:03','2021-09-25 15:33:03','','','','inherit','open','closed','','stephanie-img_2526-3500px-rnw','','','2022-06-29 04:12:02','2022-06-29 04:12:02','',0,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW.jpg',0,'attachment','image/jpeg',0),(623,1,'2021-09-25 15:34:03','2021-09-25 15:34:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-09-25 15:34:03','2021-09-25 15:34:03','',9,'https://flaphotography.com/?p=623',0,'revision','',0),(662,1,'2021-10-07 03:52:21','2021-10-07 03:52:21','','','','inherit','open','closed','','img_4142-pr-suite-2000px-fq2','','','2022-06-29 04:11:24','2022-06-29 04:11:24','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2.jpg',0,'attachment','image/jpeg',0),(629,1,'2021-10-04 15:28:13','2021-10-04 15:28:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px.jpg\" title_text=\"IMG_4237-1-PR-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-04 15:28:13','2021-10-04 15:28:13','',61,'https://flaphotography.com/?p=629',0,'revision','',0),(631,1,'2021-10-04 15:48:30','2021-10-04 15:48:30','','','','inherit','open','closed','','marvelous-rolling-mg_8545-2000px','','','2022-06-29 04:12:00','2022-06-29 04:12:00','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px.jpg',0,'attachment','image/jpeg',0),(748,1,'2021-10-16 16:30:47','2021-10-16 16:30:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\" title_text=\"Marvelous-rolling-MG_8545-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-16 16:30:47','2021-10-16 16:30:47','',61,'https://flaphotography.com/?p=748',0,'revision','',0),(632,1,'2021-10-04 15:48:56','2021-10-04 15:48:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\" title_text=\"Marvelous-rolling-MG_8545-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\" title_text=\"Flow-presence_MG_8542-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-04 15:48:56','2021-10-04 15:48:56','',61,'https://flaphotography.com/?p=632',0,'revision','',0),(633,1,'2021-10-04 15:50:29','2021-10-04 15:50:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px.jpg\" title_text=\"IMG_4237-1-PR-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-04 15:50:29','2021-10-04 15:50:29','',9,'https://flaphotography.com/?p=633',0,'revision','',0),(635,1,'2021-10-04 16:08:43','2021-10-04 16:08:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-04 16:08:43','2021-10-04 16:08:43','',9,'https://flaphotography.com/?p=635',0,'revision','',0),(638,1,'2021-10-05 01:49:25','2021-10-05 01:49:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-05 01:49:25','2021-10-05 01:49:25','',9,'https://flaphotography.com/?p=638',0,'revision','',0),(637,1,'2021-10-05 01:48:45','2021-10-05 01:48:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/COLVIN_MG_9338-CROP-2500PX.jpg\" title_text=\"COLVIN_MG_9338-CROP-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-05 01:48:45','2021-10-05 01:48:45','',9,'https://flaphotography.com/?p=637',0,'revision','',0),(641,1,'2021-10-05 02:13:33','2021-10-05 02:13:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-05 02:13:33','2021-10-05 02:13:33','',9,'https://flaphotography.com/?p=641',0,'revision','',0),(639,1,'2021-10-05 01:55:34','2021-10-05 01:55:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Morlon_MG_9412-HEAD-2500px-RNW.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500px-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-05 01:55:34','2021-10-05 01:55:34','',9,'https://flaphotography.com/?p=639',0,'revision','',0),(643,1,'2021-10-06 23:34:56','2021-10-06 23:34:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\" title_text=\"Lucie_MG_9282-2500px-M View-RNW\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-06 23:34:56','2021-10-06 23:34:56','',9,'https://flaphotography.com/?p=643',0,'revision','',0),(644,1,'2021-10-06 23:45:33','2021-10-06 23:45:33','','','','inherit','open','closed','','lucie_9282-dark-grey-2500px-freq','','','2022-06-29 04:11:55','2022-06-29 04:11:55','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg',0,'attachment','image/jpeg',0),(645,1,'2021-10-06 23:45:55','2021-10-06 23:45:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-06 23:45:55','2021-10-06 23:45:55','',9,'https://flaphotography.com/?p=645',0,'revision','',0),(1327,1,'2022-06-29 04:12:15','2022-06-29 04:12:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 04:12:15','2022-06-29 04:12:15','',9,'https://flaphotography.com/?p=1327',0,'revision','',0),(650,1,'2021-10-07 02:01:51','2021-10-07 02:01:51','','','','inherit','open','closed','','pastor-mo-and-colvin4-img_2249-fq-2000px','','','2022-06-29 04:11:50','2022-06-29 04:11:50','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg',0,'attachment','image/jpeg',0),(654,1,'2021-10-07 02:36:33','2021-10-07 02:36:33','','','','inherit','open','closed','','monique-smile_mg_9348-2000px-fq2','','','2022-06-29 04:11:30','2022-06-29 04:11:30','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg',0,'attachment','image/jpeg',0),(660,1,'2021-10-07 03:13:48','2021-10-07 03:13:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 03:13:48','2021-10-07 03:13:48','',9,'https://flaphotography.com/?p=660',0,'revision','',0),(655,1,'2021-10-07 02:37:07','2021-10-07 02:37:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 02:37:07','2021-10-07 02:37:07','',9,'https://flaphotography.com/?p=655',0,'revision','',0),(652,1,'2021-10-07 02:02:36','2021-10-07 02:02:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 02:02:36','2021-10-07 02:02:36','',9,'https://flaphotography.com/?p=652',0,'revision','',0),(648,1,'2021-10-07 00:17:19','2021-10-07 00:17:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-Final-4000PX-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-Final-4000PX\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\" title_text=\"Monique-smile_MG_9348-3000PX2-NEW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\" title_text=\"Pastor-TRA-BLACK--Mo-Colvin-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LADY-P-IMG_2221-2500PX-RNEW1-scaled.jpg\" title_text=\"LADY-P-IMG_2221-2500PX-RNEW1\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 00:17:19','2021-10-07 00:17:19','',9,'https://flaphotography.com/?p=648',0,'revision','',0),(656,1,'2021-10-07 02:56:31','2021-10-07 02:56:31','','','','inherit','open','closed','','andrew-boss-img_2437-2000px-fq2','','','2022-06-29 04:11:33','2022-06-29 04:11:33','',0,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg',0,'attachment','image/jpeg',0),(657,1,'2021-10-07 02:57:02','2021-10-07 02:57:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ANDREW-BOSS-IMG_2437-2000PX-FQ2\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-07 02:57:02','2021-10-07 02:57:02','',85,'https://flaphotography.com/?p=657',0,'revision','',0),(664,1,'2021-10-07 13:34:19','2021-10-07 13:34:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2\" show_in_lightbox=\"on\" src_last_edited=\"on|desktop\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 13:34:19','2021-10-07 13:34:19','',9,'https://flaphotography.com/?p=664',0,'revision','',0),(663,1,'2021-10-07 03:52:52','2021-10-07 03:52:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 03:52:52','2021-10-07 03:52:52','',9,'https://flaphotography.com/?p=663',0,'revision','',0),(665,1,'2021-10-07 13:37:55','2021-10-07 13:37:55','','','','inherit','open','closed','','lucie_9282-dark-grey-2500px-freq-cp','','','2022-07-12 15:33:57','2022-07-12 15:33:57','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg',0,'attachment','image/jpeg',0),(667,1,'2021-10-07 15:12:04','2021-10-07 15:12:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image title_text=\"IMG_4142-PR-Suite-2000PX-FQ2\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\" src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 15:12:04','2021-10-07 15:12:04','',9,'https://flaphotography.com/?p=667',0,'revision','',0),(666,1,'2021-10-07 13:45:32','2021-10-07 13:45:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2\" show_in_lightbox=\"on\" src_tablet=\"\" src_phone=\"\" src_last_edited=\"on|desktop\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4237-1-PR-2000px2.jpg\" title_text=\"IMG_4237-1-PR-2000px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-07 13:45:32','2021-10-07 13:45:32','',9,'https://flaphotography.com/?p=666',0,'revision','',0),(668,1,'2021-10-09 23:29:11','2021-10-09 23:29:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>FREE STUDIO TIME</h1>\n<p>5 PROs - PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products<br />2. You must agree to tag us on social media. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','publish','closed','closed','','free-studio','','','2021-10-20 00:48:36','2021-10-20 00:48:36','',0,'https://flaphotography.com/?page_id=668',0,'page','',0),(673,1,'2021-10-09 22:45:26','2021-10-09 22:45:26','','','','inherit','open','closed','','img_4142-pr-suite-2000px-fq2-cp','','','2022-07-12 15:33:55','2022-07-12 15:33:55','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (710,1,'2021-10-10 00:29:13','2021-10-10 00:29:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:29:13','2021-10-10 00:29:13','',85,'https://flaphotography.com/?p=710',0,'revision','',0),(674,1,'2021-10-09 22:46:07','2021-10-09 22:46:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-09 22:46:07','2021-10-09 22:46:07','',85,'https://flaphotography.com/?p=674',0,'revision','',0),(675,1,'2021-10-09 22:47:07','2021-10-09 22:47:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 22:47:07','2021-10-09 22:47:07','',9,'https://flaphotography.com/?p=675',0,'revision','',0),(678,1,'2021-10-09 22:57:14','2021-10-09 22:57:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" hover_enabled=\"0\" title_text=\"IMG_4526-1-LOOK-FINAL4000PX-CP\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 22:57:14','2021-10-09 22:57:14','',9,'https://flaphotography.com/?p=678',0,'revision','',0),(672,1,'2021-10-09 22:42:13','2021-10-09 22:42:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\" title_text=\"Communication-team-CROP_MG_9302--2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 22:42:13','2021-10-09 22:42:13','',9,'https://flaphotography.com/?p=672',0,'revision','',0),(676,1,'2021-10-09 22:53:40','2021-10-09 22:53:40','','','','inherit','open','closed','','img_4544-1-cnj-its-time-4000px2-cp','','','2022-06-29 04:11:19','2022-06-29 04:11:19','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP.jpg',0,'attachment','image/jpeg',0),(700,1,'2021-10-09 23:38:43','2021-10-09 23:38:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>FREE STUDIO TIME</h1>\n<p>PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products<br />2. You must agree to tag us on social media. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:38:43','2021-10-09 23:38:43','',668,'https://flaphotography.com/?p=700',0,'revision','',0),(695,1,'2021-10-09 23:30:24','2021-10-09 23:30:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:30:24','2021-10-09 23:30:24','',668,'https://flaphotography.com/?p=695',0,'revision','',0),(690,1,'2021-10-09 23:24:54','2021-10-09 23:24:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:24:54','2021-10-09 23:24:54','',668,'https://flaphotography.com/?p=690',0,'revision','',0),(682,1,'2021-10-09 22:58:47','2021-10-09 22:58:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" hover_enabled=\"0\" title_text=\"IMG_4526-1-LOOK-FINAL4000PX-CP\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 22:58:47','2021-10-09 22:58:47','',9,'https://flaphotography.com/?p=682',0,'revision','',0),(684,1,'2021-10-09 22:59:55','2021-10-09 22:59:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" hover_enabled=\"0\" title_text=\"IMG_4526-1-LOOK-FINAL4000PX-CP\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 22:59:55','2021-10-09 22:59:55','',9,'https://flaphotography.com/?p=684',0,'revision','',0),(688,1,'2021-10-09 23:23:52','2021-10-09 23:23:52','','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:23:52','2021-10-09 23:23:52','',668,'https://flaphotography.com/?p=688',0,'revision','',0),(687,1,'2021-10-09 23:04:43','2021-10-09 23:04:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" hover_enabled=\"0\" title_text=\"IMG_4526-1-LOOK-FINAL4000PX-CP\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-09 23:04:43','2021-10-09 23:04:43','',9,'https://flaphotography.com/?p=687',0,'revision','',0),(693,1,'2021-10-09 23:29:40','2021-10-09 23:29:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:29:40','2021-10-09 23:29:40','',668,'https://flaphotography.com/?p=693',0,'revision','',0),(692,1,'2021-10-09 23:29:11','2021-10-09 23:29:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:29:11','2021-10-09 23:29:11','',668,'https://flaphotography.com/?p=692',0,'revision','',0),(698,1,'2021-10-09 23:31:34','2021-10-09 23:31:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FREE STUDIO TIME</h1>\n<p>PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:31:34','2021-10-09 23:31:34','',668,'https://flaphotography.com/?p=698',0,'revision','',0),(696,1,'2021-10-09 23:30:57','2021-10-09 23:30:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FREE STUDIO TIME</h1>\n<p>PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:30:57','2021-10-09 23:30:57','',668,'https://flaphotography.com/?p=696',0,'revision','',0),(799,1,'2021-10-20 00:43:13','2021-10-20 00:43:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>FREE STUDIO TIME</h1>\n<p>5 PROs - PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products<br />2. You must agree to tag us on social media. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-20 00:43:13','2021-10-20 00:43:13','',668,'https://flaphotography.com/?p=799',0,'revision','',0),(701,1,'2021-10-09 23:39:25','2021-10-09 23:39:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>FREE STUDIO TIME</h1>\n<p>5 PROs - PROMO ENDS OCT 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You are a business that sells clothing products<br />2. You must agree to tag us on social media. </p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"Free Studio Time Sign Up\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FREE STUDIO TIME','','inherit','closed','closed','','668-revision-v1','','','2021-10-09 23:39:25','2021-10-09 23:39:25','',668,'https://flaphotography.com/?p=701',0,'revision','',0),(702,1,'2021-10-10 00:11:02','2021-10-10 00:11:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:11:02','2021-10-10 00:11:02','',463,'https://flaphotography.com/?p=702',0,'revision','',0),(704,1,'2021-10-10 00:14:54','2021-10-10 00:14:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 40% OFF</h1>\n<p>PROMO ENDS SEP 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 40% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 40% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:14:54','2021-10-10 00:14:54','',463,'https://flaphotography.com/?p=704',0,'revision','',0),(703,1,'2021-10-10 00:11:24','2021-10-10 00:11:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:11:24','2021-10-10 00:11:24','',463,'https://flaphotography.com/?p=703',0,'revision','',0),(705,1,'2021-10-10 00:16:16','2021-10-10 00:16:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-POMO-HUGE-40-OFF-SEP-20-2021-RNW.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:16:16','2021-10-10 00:16:16','',463,'https://flaphotography.com/?p=705',0,'revision','',0),(741,1,'2021-10-15 17:28:22','2021-10-15 17:28:22','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-15 17:28:22','2021-10-15 17:28:22','',367,'https://flaphotography.com/?p=741',0,'revision','',0),(707,1,'2021-10-10 00:18:08','2021-10-10 00:18:08','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-10 00:18:08','2021-10-10 00:18:08','',367,'https://flaphotography.com/?p=707',0,'revision','',0),(708,1,'2021-10-10 00:18:16','2021-10-10 00:18:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:18:16','2021-10-10 00:18:16','',463,'https://flaphotography.com/?p=708',0,'revision','',0),(765,1,'2021-10-18 17:29:44','2021-10-18 17:29:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-18 17:29:44','2021-10-18 17:29:44','',463,'https://flaphotography.com/?p=765',0,'revision','',0),(709,1,'2021-10-10 00:25:23','2021-10-10 00:25:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 40% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-10 00:25:23','2021-10-10 00:25:23','',463,'https://flaphotography.com/?p=709',0,'revision','',0),(713,1,'2021-10-10 00:37:52','2021-10-10 00:37:52','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-10 00:37:52','2021-10-10 00:37:52','',197,'https://flaphotography.com/?p=713',0,'revision','',0),(745,1,'2021-10-15 17:31:47','2021-10-15 17:31:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-15 17:31:47','2021-10-15 17:31:47','',85,'https://flaphotography.com/?p=745',0,'revision','',0),(714,1,'2021-10-10 00:41:46','2021-10-10 00:41:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"joy-video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:41:46','2021-10-10 00:41:46','',85,'https://flaphotography.com/?p=714',0,'revision','',0),(712,1,'2021-10-10 00:35:30','2021-10-10 00:35:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 40% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"lwp-video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:35:30','2021-10-10 00:35:30','',85,'https://flaphotography.com/?p=712',0,'revision','',0),(715,1,'2021-10-10 00:42:20','2021-10-10 00:42:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"joy-video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:42:20','2021-10-10 00:42:20','',85,'https://flaphotography.com/?p=715',0,'revision','',0),(738,1,'2021-10-15 17:26:18','2021-10-15 17:26:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-15 17:26:18','2021-10-15 17:26:18','',85,'https://flaphotography.com/?p=738',0,'revision','',0),(718,1,'2021-10-10 00:47:11','2021-10-10 00:47:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"joy-video-autoplay\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:47:11','2021-10-10 00:47:11','',85,'https://flaphotography.com/?p=718',0,'revision','',0),(717,1,'2021-10-10 00:45:12','2021-10-10 00:45:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"joy-video-autoplay\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-10 00:45:12','2021-10-10 00:45:12','',85,'https://flaphotography.com/?p=717',0,'revision','',0),(723,1,'2021-10-12 22:28:11','2021-10-12 22:28:11','','','','inherit','open','closed','','pastor-mo-and-colvin4-img_2249-fq-2000px-cp1','','','2022-07-12 15:33:50','2022-07-12 15:33:50','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg',0,'attachment','image/jpeg',0),(726,1,'2021-10-12 22:42:41','2021-10-12 22:42:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>WEBSITE IS COMING SOON!</h1>\n<h1>UNDER CONSTRUCTION</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LOGO-FLAPSTART-ORG-230px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2020-03-02 02:41\" _builder_version=\"4.9.7\" background_color=\"#D53E24\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:42:41','2021-10-12 22:42:41','',79,'https://flaphotography.com/?p=726',0,'revision','',0),(797,1,'2021-10-20 00:41:14','2021-10-20 00:41:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>SORRY! THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-16 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-20 00:41:14','2021-10-20 00:41:14','',79,'https://flaphotography.com/?p=797',0,'revision','',0),(729,1,'2021-10-12 22:45:21','2021-10-12 22:45:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-14 02:41\" _builder_version=\"4.11.2\" background_color=\"#D53E24\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:45:21','2021-10-12 22:45:21','',79,'https://flaphotography.com/?p=729',0,'revision','',0),(728,1,'2021-10-12 22:44:29','2021-10-12 22:44:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" animation_style=\"slide\" hover_enabled=\"0\" global_colors_info=\"{}\" header_font_size=\"24px\" sticky_enabled=\"0\"]<h1>THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2020-03-05 02:41\" _builder_version=\"4.11.2\" background_color=\"#D53E24\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:44:29','2021-10-12 22:44:29','',79,'https://flaphotography.com/?p=728',0,'revision','',0),(730,1,'2021-10-12 22:45:50','2021-10-12 22:45:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-14 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:45:50','2021-10-12 22:45:50','',79,'https://flaphotography.com/?p=730',0,'revision','',0),(731,1,'2021-10-12 22:47:52','2021-10-12 22:47:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-14 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:47:52','2021-10-12 22:47:52','',79,'https://flaphotography.com/?p=731',0,'revision','',0),(732,1,'2021-10-12 22:48:43','2021-10-12 22:48:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>SORRY! THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-14 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-12 22:48:43','2021-10-12 22:48:43','',79,'https://flaphotography.com/?p=732',0,'revision','',0),(892,1,'2021-11-27 05:11:00','2021-11-27 05:11:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-11-27 05:11:00','2021-11-27 05:11:00','',234,'https://flaphotography.com/?p=892',0,'revision','',0),(734,1,'2021-10-14 11:55:46','2021-10-14 11:55:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-10-14 11:55:46','2021-10-14 11:55:46','',234,'https://flaphotography.com/?p=734',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (755,1,'2021-10-17 17:53:38','2021-10-17 17:53:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-17 17:53:38','2021-10-17 17:53:38','',9,'https://flaphotography.com/?p=755',0,'revision','',0),(735,1,'2021-10-14 11:56:39','2021-10-14 11:56:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" hover_enabled=\"0\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-14 11:56:39','2021-10-14 11:56:39','',9,'https://flaphotography.com/?p=735',0,'revision','',0),(724,1,'2021-10-12 22:28:39','2021-10-12 22:28:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" global_colors_info=\"{}\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-12 22:28:39','2021-10-12 22:28:39','',9,'https://flaphotography.com/?p=724',0,'revision','',0),(736,1,'2021-10-14 12:03:48','2021-10-14 12:03:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" background_color=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" header_font=\"|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" animation_style=\"slide\" global_colors_info=\"{}\"]<h1>SORRY! THE WEBSITE IS CURRENTLY UNDERGOING MAINTENANCE. PLEASE RETURN LATER. THANKS!</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" _builder_version=\"4.11.2\" animation_style=\"roll\" animation_duration=\"1150ms\" animation_delay=\"1000ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1000ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>CUSTOM WEB DESIGN</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1200ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>Looking Professional on the Web</h1>[/et_pb_text][et_pb_text _builder_version=\"4.0.9\" header_font=\"|700|||||||\" custom_margin=\"31px||||false|false\" custom_padding=\"||||false|false\" animation_style=\"bounce\" animation_duration=\"1200ms\" animation_delay=\"1300ms\" box_shadow_style=\"preset2\" box_shadow_blur=\"13px\" box_shadow_spread=\"-6px\" box_shadow_color=\"#1A6AAA\" global_colors_info=\"{}\"]<h1>By Kassi J.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_countdown_timer title=\"DAYS LEFT BEFORE LAUNCH OF FLAP PHOTOGRAPHY\" date_time=\"2021-10-16 02:41\" _builder_version=\"4.11.2\" background_color=\"#000000\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_countdown_timer][/et_pb_column][/et_pb_row][/et_pb_section]','COMING SOON PAGE','','inherit','closed','closed','','79-revision-v1','','','2021-10-14 12:03:48','2021-10-14 12:03:48','',79,'https://flaphotography.com/?p=736',0,'revision','',0),(739,1,'2021-10-15 17:28:07','2021-10-15 17:28:07','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" module_class=\"video-autoplay\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-15 17:28:07','2021-10-15 17:28:07','',367,'https://flaphotography.com/?p=739',0,'revision','',0),(743,1,'2021-10-15 17:28:49','2021-10-15 17:28:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" module_class=\"video-autoplay\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-15 17:28:49','2021-10-15 17:28:49','',85,'https://flaphotography.com/?p=743',0,'revision','',0),(740,1,'2021-10-15 17:28:09','2021-10-15 17:28:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"MODELING\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" link_option_url=\"https://fotopens.com/flap-photography\" hover_enabled=\"0\" module_class=\"video-autoplay\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-15 17:28:09','2021-10-15 17:28:09','',85,'https://flaphotography.com/?p=740',0,'revision','',0),(742,1,'2021-10-15 17:28:47','2021-10-15 17:28:47','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"HUGE 30 OFF-ENDS OCT 30\" module_class=\"video-autoplay\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-15 17:28:47','2021-10-15 17:28:47','',367,'https://flaphotography.com/?p=742',0,'revision','',0),(744,1,'2021-10-15 17:31:46','2021-10-15 17:31:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-15 17:31:46','2021-10-15 17:31:46','',367,'https://flaphotography.com/?p=744',0,'revision','',0),(747,1,'2021-10-16 16:30:29','2021-10-16 16:30:29','','','','inherit','open','closed','','flow-presence_mg_8542-1-fq-2000px','','','2022-07-12 15:33:48','2022-07-12 15:33:48','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg',0,'attachment','image/jpeg',0),(751,1,'2021-10-16 17:43:39','2021-10-16 17:43:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\" title_text=\"Marvelous-rolling-MG_8545-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-16 17:43:39','2021-10-16 17:43:39','',61,'https://flaphotography.com/?p=751',0,'revision','',0),(749,1,'2021-10-16 16:33:03','2021-10-16 16:33:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\" title_text=\"Marvelous-rolling-MG_8545-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-skies_MG_8543-2000PX-scaled-1.jpg\" title_text=\"Marvelous-skies_MG_8543-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" hover_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 40% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-16 16:33:03','2021-10-16 16:33:03','',61,'https://flaphotography.com/?p=749',0,'revision','',0),(750,1,'2021-10-16 17:43:08','2021-10-16 17:43:08','','','','inherit','open','closed','','marvelous-sky_mg_8543-1-fq-2000px','','','2022-07-12 15:33:45','2022-07-12 15:33:45','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX.jpg',0,'attachment','image/jpeg',0),(759,1,'2021-10-18 00:35:30','2021-10-18 00:35:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 00:35:30','2021-10-18 00:35:30','',61,'https://flaphotography.com/?p=759',0,'revision','',0),(754,1,'2021-10-17 17:47:16','2021-10-17 17:47:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\" title_text=\"Marvelous-2000pX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-17 17:47:16','2021-10-17 17:47:16','',61,'https://flaphotography.com/?p=754',0,'revision','',0),(757,1,'2021-10-18 00:34:16','2021-10-18 00:34:16','','','','inherit','open','closed','','_mg_8545-1-fq-2000px','','','2022-07-12 15:33:43','2022-07-12 15:33:43','',0,'https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX.jpg',0,'attachment','image/jpeg',0),(760,1,'2021-10-18 02:41:17','2021-10-18 02:41:17','','','','inherit','open','closed','','img_5248-1-5000px-crop','','','2022-07-12 15:33:34','2022-07-12 15:33:34','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP.jpg',0,'attachment','image/jpeg',0),(761,1,'2021-10-18 02:41:52','2021-10-18 02:41:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kassi_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 02:41:52','2021-10-18 02:41:52','',61,'https://flaphotography.com/?p=761',0,'revision','',0),(827,1,'2021-10-23 04:12:14','2021-10-23 04:12:14','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-23 04:12:14','2021-10-23 04:12:14','',367,'https://flaphotography.com/?p=827',0,'revision','',0),(762,1,'2021-10-18 13:46:46','2021-10-18 13:46:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" hover_enabled=\"0\" follow_button=\"off\" url_new_window=\"on\" sticky_enabled=\"0\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-18 13:46:46','2021-10-18 13:46:46','',367,'https://flaphotography.com/?p=762',0,'revision','',0),(764,1,'2021-10-18 13:47:43','2021-10-18 13:47:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 13:47:43','2021-10-18 13:47:43','',61,'https://flaphotography.com/?p=764',0,'revision','',0),(763,1,'2021-10-18 13:46:48','2021-10-18 13:46:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" hover_enabled=\"0\" follow_button=\"off\" url_new_window=\"on\" sticky_enabled=\"0\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 13:46:48','2021-10-18 13:46:48','',61,'https://flaphotography.com/?p=763',0,'revision','',0),(798,1,'2021-10-20 00:42:24','2021-10-20 00:42:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-20 00:42:24','2021-10-20 00:42:24','',463,'https://flaphotography.com/?p=798',0,'revision','',0),(768,1,'2021-10-18 17:41:44','2021-10-18 17:41:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" field_id=\"date\" field_title=\"Please enter date\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-18 17:41:44','2021-10-18 17:41:44','',463,'https://flaphotography.com/?p=768',0,'revision','',0),(767,1,'2021-10-18 17:37:30','2021-10-18 17:37:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, not yet.%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give an specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-18 17:37:30','2021-10-18 17:37:30','',463,'https://flaphotography.com/?p=767',0,'revision','',0),(769,1,'2021-10-18 17:49:41','2021-10-18 17:49:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"15px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-18 17:49:41','2021-10-18 17:49:41','',463,'https://flaphotography.com/?p=769',0,'revision','',0),(775,1,'2021-10-18 23:41:07','2021-10-18 23:41:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 23:41:07','2021-10-18 23:41:07','',61,'https://flaphotography.com/?p=775',0,'revision','',0),(773,1,'2021-10-18 23:32:58','2021-10-18 23:32:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px5-scaled.jpg\" title_text=\"IMG_5330-1-2000px5\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 23:32:58','2021-10-18 23:32:58','',61,'https://flaphotography.com/?p=773',0,'revision','',0),(771,1,'2021-10-18 23:18:21','2021-10-18 23:18:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-IMG_5330-1-2000px-scaled.jpg\" title_text=\"Noelle-IMG_5330-1-2000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-18 23:18:21','2021-10-18 23:18:21','',61,'https://flaphotography.com/?p=771',0,'revision','',0),(774,1,'2021-10-18 23:40:30','2021-10-18 23:40:30','','','','inherit','open','closed','','img_5330-1-2000px7','','','2022-07-12 15:33:31','2022-07-12 15:33:31','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7.jpg',0,'attachment','image/jpeg',0),(783,1,'2021-10-19 12:31:18','2021-10-19 12:31:18','','','','inherit','open','closed','','img_5311-1-3000pxc3','','','2022-07-12 15:33:29','2022-07-12 15:33:29','',0,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3.jpg',0,'attachment','image/jpeg',0),(782,1,'2021-10-19 01:30:42','2021-10-19 01:30:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-2000PXC2-scaled.jpg\" title_text=\"IMG_5311-1-2000PXC2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" custom_margin=\"||6px|||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 01:30:42','2021-10-19 01:30:42','',61,'https://flaphotography.com/?p=782',0,'revision','',0),(780,1,'2021-10-19 01:30:11','2021-10-19 01:30:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-2000PXC2-scaled.jpg\" title_text=\"IMG_5311-1-2000PXC2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" custom_margin=\"||6px|||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 01:30:11','2021-10-19 01:30:11','',61,'https://flaphotography.com/?p=780',0,'revision','',0),(779,1,'2021-10-19 01:27:53','2021-10-19 01:27:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-2000PXC2-scaled.jpg\" title_text=\"IMG_5311-1-2000PXC2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\" title_text=\"KASSI-STUDIO-SET-SHOT-1200PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 01:27:53','2021-10-19 01:27:53','',61,'https://flaphotography.com/?p=779',0,'revision','',0),(790,1,'2021-10-19 19:05:46','2021-10-19 19:05:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 19:05:46','2021-10-19 19:05:46','',61,'https://flaphotography.com/?p=790',0,'revision','',0),(784,1,'2021-10-19 12:31:58','2021-10-19 12:31:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 12:31:58','2021-10-19 12:31:58','',61,'https://flaphotography.com/?p=784',0,'revision','',0),(785,1,'2021-10-19 15:13:36','2021-10-19 15:13:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-ENDS-OCT-30.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-19 15:13:36','2021-10-19 15:13:36','',85,'https://flaphotography.com/?p=785',0,'revision','',0),(794,1,'2021-10-19 19:35:03','2021-10-19 19:35:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 2\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-19 19:35:03','2021-10-19 19:35:03','',367,'https://flaphotography.com/?p=794',0,'revision','',0),(787,1,'2021-10-19 18:02:58','2021-10-19 18:02:58','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30% OFF PROMO-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-19 18:02:58','2021-10-19 18:02:58','',367,'https://flaphotography.com/?p=787',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (826,1,'2021-10-22 12:39:39','2021-10-22 12:39:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 3\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-22 12:39:39','2021-10-22 12:39:39','',85,'https://flaphotography.com/?p=826',0,'revision','',0),(788,1,'2021-10-19 18:03:01','2021-10-19 18:03:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30% OFF PROMO-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30% OFF PROMO-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-19 18:03:01','2021-10-19 18:03:01','',85,'https://flaphotography.com/?p=788',0,'revision','',0),(791,1,'2021-10-19 19:07:26','2021-10-19 19:07:26','','','','inherit','open','closed','','ruben-img_5250-1-2500px-cp','','','2022-07-12 15:33:27','2022-07-12 15:33:27','',0,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg',0,'attachment','image/jpeg',0),(792,1,'2021-10-19 19:08:32','2021-10-19 19:08:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-19 19:08:32','2021-10-19 19:08:32','',61,'https://flaphotography.com/?p=792',0,'revision','',0),(795,1,'2021-10-19 19:35:05','2021-10-19 19:35:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 2\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 2\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-19 19:35:05','2021-10-19 19:35:05','',85,'https://flaphotography.com/?p=795',0,'revision','',0),(803,1,'2021-10-20 00:52:29','2021-10-20 00:52:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_last_edited=\"on|phone\" header_font_size_phone=\"17px\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone Number\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-20 00:52:29','2021-10-20 00:52:29','',463,'https://flaphotography.com/?p=803',0,'revision','',0),(811,1,'2021-10-20 11:15:34','2021-10-20 11:15:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-20 11:15:34','2021-10-20 11:15:34','',61,'https://flaphotography.com/?p=811',0,'revision','',0),(807,1,'2021-10-20 10:51:22','2021-10-20 10:51:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\" title_text=\"IMG_5330-1-2000px7\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-1-2000PXCP.jpg\" title_text=\"Noelle-Headshot-IMG_5345-1-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-20 10:51:22','2021-10-20 10:51:22','',61,'https://flaphotography.com/?p=807',0,'revision','',0),(812,1,'2021-10-20 22:47:51','2021-10-20 22:47:51','','','','inherit','open','closed','','noelle_5330-1-6000px72-3000px','','','2022-06-29 04:11:07','2022-06-29 04:11:07','',0,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX.jpg',0,'attachment','image/jpeg',0),(813,1,'2021-10-20 22:48:16','2021-10-20 22:48:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-2.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-20 22:48:16','2021-10-20 22:48:16','',61,'https://flaphotography.com/?p=813',0,'revision','',0),(816,1,'2021-10-21 13:26:34','2021-10-21 13:26:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 3\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\" title_text=\"After - Teeth whitened, Eye iris enhanced, Highlights balanced\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 30 OFF - FINAL 3\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-21 13:26:34','2021-10-21 13:26:34','',85,'https://flaphotography.com/?p=816',0,'revision','',0),(819,1,'2021-10-22 00:21:00','2021-10-22 00:21:00','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    black: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:21:00','2021-10-22 00:21:00','',197,'https://flaphotography.com/?p=819',0,'revision','',0),(820,1,'2021-10-22 00:22:05','2021-10-22 00:22:05','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    white: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:22:05','2021-10-22 00:22:05','',197,'https://flaphotography.com/?p=820',0,'revision','',0),(821,1,'2021-10-22 00:22:25','2021-10-22 00:22:25','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: WHITE;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    white: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:22:25','2021-10-22 00:22:25','',197,'https://flaphotography.com/?p=821',0,'revision','',0),(822,1,'2021-10-22 00:22:59','2021-10-22 00:22:59','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    white: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:22:59','2021-10-22 00:22:59','',197,'https://flaphotography.com/?p=822',0,'revision','',0),(823,1,'2021-10-22 00:24:11','2021-10-22 00:24:11','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: white;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    white: white!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:24:11','2021-10-22 00:24:11','',197,'https://flaphotography.com/?p=823',0,'revision','',0),(824,1,'2021-10-22 00:24:33','2021-10-22 00:24:33','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: white;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: black!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-22 00:24:33','2021-10-22 00:24:33','',197,'https://flaphotography.com/?p=824',0,'revision','',0),(825,1,'2021-10-22 00:28:08','2021-10-22 00:28:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" required_mark=\"off\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-22 00:28:08','2021-10-22 00:28:08','',463,'https://flaphotography.com/?p=825',0,'revision','',0),(828,1,'2021-10-23 04:12:33','2021-10-23 04:12:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" form_field_focus_text_color=\"#000000\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-23 04:12:33','2021-10-23 04:12:33','',367,'https://flaphotography.com/?p=828',0,'revision','',0),(829,1,'2021-10-23 04:12:35','2021-10-23 04:12:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" form_field_focus_text_color=\"#000000\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-23 04:12:35','2021-10-23 04:12:35','',463,'https://flaphotography.com/?p=829',0,'revision','',0),(831,1,'2021-10-23 04:45:14','2021-10-23 04:45:14','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: white;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: black!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-10-23 04:45:14','2021-10-23 04:45:14','',197,'https://flaphotography.com/?p=831',0,'revision','',0),(834,1,'2021-10-23 15:46:35','2021-10-23 15:46:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-23 15:46:35','2021-10-23 15:46:35','',85,'https://flaphotography.com/?p=834',0,'revision','',0),(832,1,'2021-10-23 15:42:12','2021-10-23 15:42:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"35px\" header_font_size_phone=\"30px\" header_font_size_last_edited=\"on|desktop\"]<h1>HUGE 30% OFF</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" title_text=\"After - changed color of outfit and background\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" url_new_window=\"on\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-23 15:42:12','2021-10-23 15:42:12','',85,'https://flaphotography.com/?p=832',0,'revision','',0),(833,1,'2021-10-23 15:46:34','2021-10-23 15:46:34','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-23 15:46:34','2021-10-23 15:46:34','',367,'https://flaphotography.com/?p=833',0,'revision','',0),(836,1,'2021-10-25 21:26:08','2021-10-25 21:26:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\" link_text_color=\"#FFFFFF\"]<h1><a href=\"https://flaphotography.com/promotion/\">GET HUGE 30% OFF</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-25 21:26:08','2021-10-25 21:26:08','',85,'https://flaphotography.com/?p=836',0,'revision','',0),(838,1,'2021-10-25 21:33:45','2021-10-25 21:33:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"24px\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" link_text_color=\"#FFFFFF\" link_font_size_last_edited=\"on|phone\" link_font_size_phone=\"16px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\"]<p><a href=\"https://flaphotography.com/promotion/\">GET HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:33:45','2021-10-25 21:33:45','',9,'https://flaphotography.com/?p=838',0,'revision','',0),(841,1,'2021-10-25 21:36:03','2021-10-25 21:36:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"24px\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" link_text_color=\"#FFFFFF\" link_font_size_last_edited=\"on|phone\" link_font_size_phone=\"16px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" link_font_size_tablet=\"19px\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:36:03','2021-10-25 21:36:03','',9,'https://flaphotography.com/?p=841',0,'revision','',0),(840,1,'2021-10-25 21:35:30','2021-10-25 21:35:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"24px\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" link_text_color=\"#FFFFFF\" link_font_size_last_edited=\"on|phone\" link_font_size_phone=\"16px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:35:30','2021-10-25 21:35:30','',9,'https://flaphotography.com/?p=840',0,'revision','',0),(842,1,'2021-10-25 21:36:31','2021-10-25 21:36:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"24px\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" link_text_color=\"#FFFFFF\" link_font_size_last_edited=\"on|tablet\" link_font_size_phone=\"16px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" link_font_size_tablet=\"19px\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:36:31','2021-10-25 21:36:31','',9,'https://flaphotography.com/?p=842',0,'revision','',0),(845,1,'2021-10-25 21:38:55','2021-10-25 21:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" background_color=\"#D6D6D6\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-25 21:38:55','2021-10-25 21:38:55','',463,'https://flaphotography.com/?p=845',0,'revision','',0),(846,1,'2021-10-25 21:41:53','2021-10-25 21:41:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:41:53','2021-10-25 21:41:53','',9,'https://flaphotography.com/?p=846',0,'revision','',0),(844,1,'2021-10-25 21:37:52','2021-10-25 21:37:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\" custom_padding=\"30px||32px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"24px\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" link_text_color=\"#FFFFFF\" link_font_size_last_edited=\"on|tablet\" link_font_size_phone=\"16px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" link_font_size_tablet=\"19px\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:37:52','2021-10-25 21:37:52','',9,'https://flaphotography.com/?p=844',0,'revision','',0),(875,1,'2021-10-28 11:01:58','2021-10-28 11:01:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-28 11:01:58','2021-10-28 11:01:58','',61,'https://flaphotography.com/?p=875',0,'revision','',0),(850,1,'2021-10-25 21:45:41','2021-10-25 21:45:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-10-25 21:45:41','2021-10-25 21:45:41','',61,'https://flaphotography.com/?p=850',0,'revision','',0),(877,1,'2021-11-02 21:22:15','2021-11-02 21:22:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"]<h1><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - NOW ENDED OCT 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-11-02 21:22:15','2021-11-02 21:22:15','',85,'https://flaphotography.com/?p=877',0,'revision','',0),(851,1,'2021-10-25 21:48:21','2021-10-25 21:48:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_text_color=\"#FFFFFF\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_font=\"Arial||||||||\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" link_font_size=\"34px\" link_text_color__hover_enabled=\"on|hover\" sticky_enabled=\"0\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-10-25 21:48:21','2021-10-25 21:48:21','',85,'https://flaphotography.com/?p=851',0,'revision','',0),(848,1,'2021-10-25 21:42:29','2021-10-25 21:42:29','[et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','publish','closed','closed','','huge-discount-section','','','2021-11-02 21:25:42','2021-11-02 21:25:42','',0,'https://flaphotography.com/et_pb_layout/huge-discount-section/',0,'et_pb_layout','',0),(874,1,'2021-10-28 10:57:57','2021-10-28 10:57:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-28 10:57:57','2021-10-28 10:57:57','',9,'https://flaphotography.com/?p=874',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (849,1,'2021-10-25 21:42:36','2021-10-25 21:42:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" sticky_enabled=\"0\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 2 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 30% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-10-25 21:42:36','2021-10-25 21:42:36','',9,'https://flaphotography.com/?p=849',0,'revision','',0),(861,1,'2021-10-26 15:50:35','2021-10-26 15:50:35','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:50:35','2021-10-26 15:50:35','',367,'https://flaphotography.com/?p=861',0,'revision','',0),(852,1,'2021-10-25 21:54:16','2021-10-25 21:54:16','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" saved_tabs=\"all\" border_color_top=\"#6B6B6B\" border_width_top=\"3px\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-25 21:54:16','2021-10-25 21:54:16','',367,'https://flaphotography.com/?p=852',0,'revision','',0),(853,1,'2021-10-25 21:54:18','2021-10-25 21:54:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" global_module=\"367\" saved_tabs=\"all\" border_color_top=\"#6B6B6B\" border_width_top=\"3px\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-25 21:54:18','2021-10-25 21:54:18','',463,'https://flaphotography.com/?p=853',0,'revision','',0),(855,1,'2021-10-25 21:56:08','2021-10-25 21:56:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','inherit','closed','closed','','848-revision-v1','','','2021-10-25 21:56:08','2021-10-25 21:56:08','',848,'https://flaphotography.com/?p=855',0,'revision','',0),(854,1,'2021-10-25 21:55:56','2021-10-25 21:55:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','inherit','closed','closed','','848-revision-v1','','','2021-10-25 21:55:56','2021-10-25 21:55:56','',848,'https://flaphotography.com/?p=854',0,'revision','',0),(856,1,'2021-10-25 21:56:26','2021-10-25 21:56:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" hover_enabled=\"0\" saved_tabs=\"all\" admin_label=\"PROMOTION LABEL\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','inherit','closed','closed','','848-revision-v1','','','2021-10-25 21:56:26','2021-10-25 21:56:26','',848,'https://flaphotography.com/?p=856',0,'revision','',0),(870,1,'2021-10-26 15:59:03','2021-10-26 15:59:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" hover_enabled=\"0\" button_alignment=\"left\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#D6D6D6\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"15px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|||0px|false|false\" custom_margin_tablet=\"|||0px|false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-26 15:59:03','2021-10-26 15:59:03','',463,'https://flaphotography.com/?p=870',0,'revision','',0),(859,1,'2021-10-26 15:48:16','2021-10-26 15:48:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-26 15:48:16','2021-10-26 15:48:16','',463,'https://flaphotography.com/?p=859',0,'revision','',0),(857,1,'2021-10-26 14:08:59','2021-10-26 14:08:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF SIGN UP\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-26 14:08:59','2021-10-26 14:08:59','',463,'https://flaphotography.com/?p=857',0,'revision','',0),(860,1,'2021-10-26 15:50:31','2021-10-26 15:50:31','[et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,Kassijose29@gmail.com\" title=\"Text your inquiry\" custom_message=\"Name of this contact:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message:||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||||et_pb_line_break_holder||Inquiry:||et_pb_line_break_holder||%%inquiry%%||et_pb_line_break_holder||||et_pb_line_break_holder||Type of photography:||et_pb_line_break_holder||%%photographyType%%||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thank you! Your message has been sent. I will get back to you shortly.\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" module_class=\"first_contact\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#D6D6D6\" form_field_focus_background_color=\"#f7f7f7\" form_field_focus_text_color=\"#000000\" title_font=\"Arial||||||||\" title_text_color=\"#D6D6D6\" title_font_size=\"17px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"16px\" background_color=\"rgba(214,214,214,0.4)\" custom_button=\"on\" button_text_size=\"15px\" button_text_color=\"#D6D6D6\" button_bg_enable_image=\"off\" button_border_color=\"rgba(224,224,224,0.66)\" button_letter_spacing=\"2px\" button_font=\"|700||on|||||\" button_icon=\"%%109%%\" button_icon_color=\"#FFFFFF\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"9px|0px|9px|0px|true|true\" custom_padding=\"|15px||15px|false|true\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" sticky_enabled=\"0\" template_type=\"module\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Your Email\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.0.9\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Inquiry\" field_title=\"What services do you need?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 I need photos taken. %22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22I need a custom built website for my business.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22I want my business logo designed.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22message%22,%22condition%22:%22is not empty%22,%22value%22:%22%22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][et_pb_contact_field field_id=\"PhotographyType\" field_title=\"What type of photography?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22 Corporate Headshots.%22,%22checked%22:0,%22dragID%22:-1,%22link_url%22:%22%22,%22link_text%22:%22%22},{%22value%22:%22Modeling / Product Photography.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Portraits.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Family Portraits.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22inquiry%22,%22condition%22:%22is%22,%22value%22:%22 I need photos taken. %22}%93\" _builder_version=\"4.9.7\" form_field_background_color=\"rgba(0,0,0,0)\" form_field_text_color=\"#FFFFFF\" form_field_focus_background_color=\"#ef4326\" form_field_focus_text_color=\"#ef4326\" form_field_font=\"Arial|700|||||||\" form_field_font_size=\"17px\" background_color=\"rgba(0,0,0,0)\" background_enable_color=\"on\" text_orientation=\"right\" border_width_all=\"2px\" border_color_all=\"#ef4326\"][/et_pb_contact_field][/et_pb_contact_form]','FOOTER CONTACT FORM','','publish','closed','closed','','footer-contact-form','','','2021-10-26 15:50:31','2021-10-26 15:50:31','',0,'https://flaphotography.com/et_pb_layout/footer-contact-form/',0,'et_pb_layout','',0),(862,1,'2021-10-26 15:54:25','2021-10-26 15:54:25','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:54:25','2021-10-26 15:54:25','',367,'https://flaphotography.com/?p=862',0,'revision','',0),(1411,1,'2022-07-01 04:37:33','2022-07-01 04:37:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-01 04:37:33','2022-07-01 04:37:33','',367,'https://flaphotography.com/?p=1411',0,'revision','',0),(863,1,'2021-10-26 15:54:34','2021-10-26 15:54:34','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:54:34','2021-10-26 15:54:34','',367,'https://flaphotography.com/?p=863',0,'revision','',0),(866,1,'2021-10-26 15:54:53','2021-10-26 15:54:53','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:54:53','2021-10-26 15:54:53','',367,'https://flaphotography.com/?p=866',0,'revision','',0),(864,1,'2021-10-26 15:54:39','2021-10-26 15:54:39','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_4\"][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:54:39','2021-10-26 15:54:39','',367,'https://flaphotography.com/?p=864',0,'revision','',0),(867,1,'2021-10-26 15:54:58','2021-10-26 15:54:58','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:54:58','2021-10-26 15:54:58','',367,'https://flaphotography.com/?p=867',0,'revision','',0),(871,1,'2021-10-28 10:49:23','2021-10-28 10:49:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-28 10:49:23','2021-10-28 10:49:23','',463,'https://flaphotography.com/?p=871',0,'revision','',0),(868,1,'2021-10-26 15:57:17','2021-10-26 15:57:17','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" button_alignment=\"left\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#D6D6D6\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"15px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:57:17','2021-10-26 15:57:17','',367,'https://flaphotography.com/?p=868',0,'revision','',0),(869,1,'2021-10-26 15:59:01','2021-10-26 15:59:01','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" hover_enabled=\"0\" button_alignment=\"left\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#D6D6D6\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"15px\" custom_margin_last_edited=\"on|tablet\" custom_margin_phone=\"|||0px|false|false\" custom_margin_tablet=\"|||0px|false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-10-26 15:59:01','2021-10-26 15:59:01','',367,'https://flaphotography.com/?p=869',0,'revision','',0),(887,1,'2021-11-02 21:32:54','2021-11-02 21:32:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-11-02 21:32:54','2021-11-02 21:32:54','',463,'https://flaphotography.com/?p=887',0,'revision','',0),(873,1,'2021-10-28 10:51:42','2021-10-28 10:51:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>HUGE 30% OFF</h1>\n<p>PROMO ENDS OCT 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" hover_enabled=\"0\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the\"Huge 30% off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. HUGE 30% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our Huge 30% Off Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-10-28 10:51:42','2021-10-28 10:51:42','',463,'https://flaphotography.com/?p=873',0,'revision','',0),(880,1,'2021-11-02 21:24:28','2021-11-02 21:24:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-11-02 21:24:28','2021-11-02 21:24:28','',9,'https://flaphotography.com/?p=880',0,'revision','',0),(878,1,'2021-11-02 21:23:32','2021-11-02 21:23:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-11-02 21:23:32','2021-11-02 21:23:32','',9,'https://flaphotography.com/?p=878',0,'revision','',0),(879,1,'2021-11-02 21:24:26','2021-11-02 21:24:26','[et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/promotion/\">HUGE 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','inherit','closed','closed','','848-revision-v1','','','2021-11-02 21:24:26','2021-11-02 21:24:26','',848,'https://flaphotography.com/?p=879',0,'revision','',0),(881,1,'2021-11-02 21:25:42','2021-11-02 21:25:42','[et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" hover_enabled=\"0\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HUGE DISCOUNT SECTION','','inherit','closed','closed','','848-revision-v1','','','2021-11-02 21:25:42','2021-11-02 21:25:42','',848,'https://flaphotography.com/?p=881',0,'revision','',0),(883,1,'2021-11-02 21:26:33','2021-11-02 21:26:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$69.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET 30% OFF - ENDING SOON!\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-11-02 21:26:33','2021-11-02 21:26:33','',61,'https://flaphotography.com/?p=883',0,'revision','',0),(989,1,'2021-12-09 00:56:56','2021-12-09 00:56:56','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-12-09 00:56:56','2021-12-09 00:56:56','',367,'https://flaphotography.com/?p=989',0,'revision','',0),(885,1,'2021-11-02 21:29:44','2021-11-02 21:29:44','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-11-02 21:29:44','2021-11-02 21:29:44','',367,'https://flaphotography.com/?p=885',0,'revision','',0),(886,1,'2021-11-02 21:29:45','2021-11-02 21:29:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - NOW ENDED OCT 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-11-02 21:29:45','2021-11-02 21:29:45','',85,'https://flaphotography.com/?p=886',0,'revision','',0),(1376,1,'2022-07-01 03:06:45','2022-07-01 03:06:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-07-01 03:06:45','2022-07-01 03:06:45','',234,'https://flaphotography.com/?p=1376',0,'revision','',0),(893,1,'2021-11-27 05:11:11','2021-11-27 05:11:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-11-27 05:11:11','2021-11-27 05:11:11','',234,'https://flaphotography.com/?p=893',0,'revision','',0),(903,1,'2021-11-27 05:25:14','2021-11-27 05:25:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"Flap-Photography-Logo-NW-300px6\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-11-27 05:25:14','2021-11-27 05:25:14','',234,'https://flaphotography.com/?p=903',0,'revision','',0),(896,1,'2021-11-27 05:14:01','2021-11-27 05:14:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\" title_text=\"Flap-Photography-Logo-NW-300px\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2021-11-27 05:14:01','2021-11-27 05:14:01','',234,'https://flaphotography.com/?p=896',0,'revision','',0),(902,1,'2021-11-27 05:24:56','2021-11-27 05:24:56','','Flap-Photography-Logo-NW-300px6','','inherit','open','closed','','flap-photography-logo-nw-300px6','','','2021-11-27 05:24:56','2021-11-27 05:24:56','',0,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',0,'attachment','image/png',0),(904,1,'2021-11-27 05:25:18','2021-11-27 05:25:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"Flap-Photography-Logo-NW-300px6\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - NOW ENDED OCT 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-11-27 05:25:18','2021-11-27 05:25:18','',85,'https://flaphotography.com/?p=904',0,'revision','',0),(889,1,'2021-11-02 21:34:18','2021-11-02 21:34:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS NOV 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-11-02 21:34:18','2021-11-02 21:34:18','',463,'https://flaphotography.com/?p=889',0,'revision','',0),(905,1,'2021-12-01 13:09:52','2021-12-01 13:09:52','','','','inherit','open','closed','','francine-bossy-smile-img_6436-6000px3-lighter','','','2022-06-29 04:11:03','2022-06-29 04:11:03','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER.jpg',0,'attachment','image/jpeg',0),(906,1,'2021-12-01 13:10:18','2021-12-01 13:10:18','','','','inherit','open','closed','','francine-boss-img_6435-6000px-lighter-2','','','2022-06-29 04:10:56','2022-06-29 04:10:56','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2.jpg',0,'attachment','image/jpeg',0),(909,1,'2021-12-01 13:18:18','2021-12-01 13:18:18','','','','inherit','open','closed','','francine-work-serious-img_6446-6000px2-crop','','','2022-07-01 20:36:37','2022-07-01 20:36:37','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP.jpg',0,'attachment','image/jpeg',0),(936,1,'2021-12-06 11:07:53','2021-12-06 11:07:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG,$430 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:07:53','2021-12-06 11:07:53','',9,'https://flaphotography.com/?p=936',0,'revision','',0),(910,1,'2021-12-01 13:19:44','2021-12-01 13:19:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00</h1>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||60px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-01 13:19:44','2021-12-01 13:19:44','',9,'https://flaphotography.com/?p=910',0,'revision','',0),(913,1,'2021-12-04 20:19:07','2021-12-04 20:19:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00</h1>\n<p>New Bundle Prices of Dec 4</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 2 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:19:07','2021-12-04 20:19:07','',9,'https://flaphotography.com/?p=913',0,'revision','',0),(912,1,'2021-12-04 20:17:54','2021-12-04 20:17:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00</h1>\n<p>New Bundle Prices of Dec 4</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:17:54','2021-12-04 20:17:54','',9,'https://flaphotography.com/?p=912',0,'revision','',0),(914,1,'2021-12-04 20:19:53','2021-12-04 20:19:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00</h1>\n<p>New Bundle Prices of Dec 4</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:19:53','2021-12-04 20:19:53','',9,'https://flaphotography.com/?p=914',0,'revision','',0),(915,1,'2021-12-04 20:20:37','2021-12-04 20:20:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $65.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:20:37','2021-12-04 20:20:37','',9,'https://flaphotography.com/?p=915',0,'revision','',0),(917,1,'2021-12-04 20:25:51','2021-12-04 20:25:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit. $170\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:25:51','2021-12-04 20:25:51','',9,'https://flaphotography.com/?p=917',0,'revision','',0),(916,1,'2021-12-04 20:24:05','2021-12-04 20:24:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 3 photos, $170.00\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||60px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $95.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 retouched photos: 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:24:05','2021-12-04 20:24:05','',9,'https://flaphotography.com/?p=916',0,'revision','',0),(920,1,'2021-12-04 20:30:11','2021-12-04 20:30:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.50 hour session, 3 outfits.  $250.00\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:30:11','2021-12-04 20:30:11','',9,'https://flaphotography.com/?p=920',0,'revision','',0),(919,1,'2021-12-04 20:27:27','2021-12-04 20:27:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.50 hour session, 3 outfits. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:27:27','2021-12-04 20:27:27','',9,'https://flaphotography.com/?p=919',0,'revision','',0),(924,1,'2021-12-05 00:35:12','2021-12-05 00:35:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $270.00 minus 20$ off = \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:35:12','2021-12-05 00:35:12','',9,'https://flaphotography.com/?p=924',0,'revision','',0),(923,1,'2021-12-05 00:33:10','2021-12-05 00:33:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.50 hour session, 2 outfits.  $260.00 minus 20$ off = \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:33:10','2021-12-05 00:33:10','',9,'https://flaphotography.com/?p=923',0,'revision','',0),(922,1,'2021-12-04 20:33:02','2021-12-04 20:33:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.50 hour session, 3 outfits.  $250.00\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"12 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-04 20:33:02','2021-12-04 20:33:02','',9,'https://flaphotography.com/?p=922',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (925,1,'2021-12-05 00:37:53','2021-12-05 00:37:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $270.00 minus 20$ off = \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:37:53','2021-12-05 00:37:53','',9,'https://flaphotography.com/?p=925',0,'revision','',0),(928,1,'2021-12-05 00:41:14','2021-12-05 00:41:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:41:14','2021-12-05 00:41:14','',9,'https://flaphotography.com/?p=928',0,'revision','',0),(927,1,'2021-12-05 00:40:30','2021-12-05 00:40:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20$ off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2 hours session, 4 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:40:30','2021-12-05 00:40:30','',9,'https://flaphotography.com/?p=927',0,'revision','',0),(929,1,'2021-12-05 00:44:11','2021-12-05 00:44:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits. $400 minus 20% off = $320\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:44:11','2021-12-05 00:44:11','',9,'https://flaphotography.com/?p=929',0,'revision','',0),(930,1,'2021-12-05 00:45:17','2021-12-05 00:45:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits. $400 minus 20% off = $320\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:45:17','2021-12-05 00:45:17','',9,'https://flaphotography.com/?p=930',0,'revision','',0),(933,1,'2021-12-05 00:47:12','2021-12-05 00:47:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits. $400 minus 20% off = $320\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:47:12','2021-12-05 00:47:12','',9,'https://flaphotography.com/?p=933',0,'revision','',0),(931,1,'2021-12-05 00:45:31','2021-12-05 00:45:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits. $400 minus 20% off = $320\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 3 retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 6 or more retouched photos bundle\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial||||||||\" body_link_font=\"Arial|300|||||||\" body_link_text_color=\"#fc9569\" body_link_font_size=\"18px\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white or grey.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:45:31','2021-12-05 00:45:31','',9,'https://flaphotography.com/?p=931',0,'revision','',0),(934,1,'2021-12-05 00:49:58','2021-12-05 00:49:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits.  $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits. $430 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:49:58','2021-12-05 00:49:58','',9,'https://flaphotography.com/?p=934',0,'revision','',0),(935,1,'2021-12-05 00:52:45','2021-12-05 00:52:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$65.00 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $170 minus  20% off = $136\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $280 minus 20% off = $224\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG,$430 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-05 00:52:45','2021-12-05 00:52:45','',9,'https://flaphotography.com/?p=935',0,'revision','',0),(939,1,'2021-12-06 11:13:02','2021-12-06 11:13:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG,$430 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:13:02','2021-12-06 11:13:02','',9,'https://flaphotography.com/?p=939',0,'revision','',0),(938,1,'2021-12-06 11:11:49','2021-12-06 11:11:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG,$430 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:11:49','2021-12-06 11:11:49','',9,'https://flaphotography.com/?p=938',0,'revision','',0),(940,1,'2021-12-06 11:14:12','2021-12-06 11:14:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG, $540 minus 20% off = $344\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:14:12','2021-12-06 11:14:12','',9,'https://flaphotography.com/?p=940',0,'revision','',0),(943,1,'2021-12-06 11:30:49','2021-12-06 11:30:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG, $540 minus 20% off = $432\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:30:49','2021-12-06 11:30:49','',9,'https://flaphotography.com/?p=943',0,'revision','',0),(941,1,'2021-12-06 11:15:25','2021-12-06 11:15:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 4</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG, $540 minus 20% off = $432\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:15:25','2021-12-06 11:15:25','',9,'https://flaphotography.com/?p=941',0,'revision','',0),(942,1,'2021-12-06 11:15:42','2021-12-06 11:15:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $190 minus  20% off = $152\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $348 minus 20% off = $278\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG, $540 minus 20% off = $432\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:15:42','2021-12-06 11:15:42','',9,'https://flaphotography.com/?p=942',0,'revision','',0),(944,1,'2021-12-06 11:32:37','2021-12-06 11:32:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 4 outfits, 3 BG, $540 minus 20% off = $432\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:32:37','2021-12-06 11:32:37','',9,'https://flaphotography.com/?p=944',0,'revision','',0),(945,1,'2021-12-06 11:34:55','2021-12-06 11:34:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" global_colors_info=\"{}\"]<h1>$105 / 1</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:34:55','2021-12-06 11:34:55','',9,'https://flaphotography.com/?p=945',0,'revision','',0),(960,1,'2021-12-06 15:17:41','2021-12-06 15:17:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 15:17:41','2021-12-06 15:17:41','',9,'https://flaphotography.com/?p=960',0,'revision','',0),(946,1,'2021-12-06 11:37:29','2021-12-06 11:37:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\" title_text=\"Morlon_MG_9412-HEAD-2500PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\" title_text=\"LADY-P-IMG_2221-2000PX-FQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" global_colors_info=\"{}\" text_font_size_last_edited=\"on|phone\" sticky_enabled=\"0\" text_font_size_phone=\"16px\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 11:37:29','2021-12-06 11:37:29','',9,'https://flaphotography.com/?p=946',0,'revision','',0),(949,1,'2021-12-06 11:46:15','2021-12-06 11:46:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" text_font=\"Arial||||||||\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $325 minus 20% off = $260\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $600 minus 20% off = $480\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-06 11:46:15','2021-12-06 11:46:15','',61,'https://flaphotography.com/?p=949',0,'revision','',0),(947,1,'2021-12-06 11:42:36','2021-12-06 11:42:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" text_font=\"Arial||||||||\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $69.00 each.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"On location photography, $104.00 each (20 km radius).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 2.5 hours session, 3 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 5 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Promotion: 20% discount for 10 retouched photos bundle. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_font=\"Arial|300|||||||\" body_text_color=\"#FFFFFF\" body_font_size=\"18px\" body_link_font=\"Arial||||||||\" body_link_text_color=\"#FC9569\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" body_text_shadow_style=\"preset2\" global_colors_info=\"{}\"]<p><a href=\"https://flaphotography.com/flap-photo-promotion/\">Sign up here!</a></p>[/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors (of any color).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-06 11:42:36','2021-12-06 11:42:36','',61,'https://flaphotography.com/?p=947',0,'revision','',0),(951,1,'2021-12-06 11:49:20','2021-12-06 11:49:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"16px\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $325 minus 20% off = $260\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $600 minus 20% off = $480\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, red, and brown.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-06 11:49:20','2021-12-06 11:49:20','',61,'https://flaphotography.com/?p=951',0,'revision','',0),(955,1,'2021-12-06 11:57:27','2021-12-06 11:57:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||66px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 11:57:27','2021-12-06 11:57:27','',25,'https://flaphotography.com/?p=955',0,'revision','',0),(954,1,'2021-12-06 11:55:57','2021-12-06 11:55:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 photos, $342. 6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||66px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 3 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 11:55:57','2021-12-06 11:55:57','',25,'https://flaphotography.com/?p=954',0,'revision','',0),(958,1,'2021-12-06 12:07:47','2021-12-06 12:07:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 12:07:47','2021-12-06 12:07:47','',25,'https://flaphotography.com/?p=958',0,'revision','',0),(956,1,'2021-12-06 11:58:35','2021-12-06 11:58:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||66px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 11:58:35','2021-12-06 11:58:35','',25,'https://flaphotography.com/?p=956',0,'revision','',0),(957,1,'2021-12-06 11:59:08','2021-12-06 11:59:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||66px||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 12 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-06 11:59:08','2021-12-06 11:59:08','',25,'https://flaphotography.com/?p=957',0,'revision','',0),(966,1,'2021-12-08 17:17:53','2021-12-08 17:17:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">HUGE 30% OFF - NOW ENDED OCT 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"%%3%%\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-12-08 17:17:53','2021-12-08 17:17:53','',85,'https://flaphotography.com/?p=966',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (967,1,'2021-12-08 17:30:49','2021-12-08 17:30:49','[et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_5,1_5,3_5\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_5\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','price table layout','','publish','closed','closed','','price-table-layout','','','2021-12-08 17:30:49','2021-12-08 17:30:49','',0,'https://flaphotography.com/et_pb_layout/price-table-layout/',0,'et_pb_layout','',0),(965,1,'2021-12-06 15:23:24','2021-12-06 15:23:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"1_3\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 15:23:24','2021-12-06 15:23:24','',9,'https://flaphotography.com/?p=965',0,'revision','',0),(963,1,'2021-12-06 15:19:01','2021-12-06 15:19:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-4px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-06 15:19:01','2021-12-06 15:19:01','',9,'https://flaphotography.com/?p=963',0,'revision','',0),(1430,1,'2022-07-01 21:00:21','2022-07-01 21:00:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\" background_blend=\"screen\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"6px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"7px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:00:21','2022-07-01 21:00:21','',9,'https://flaphotography.com/?p=1430',0,'revision','',0),(1424,1,'2022-07-01 20:38:06','2022-07-01 20:38:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:38:06','2022-07-01 20:38:06','',9,'https://flaphotography.com/?p=1424',0,'revision','',0),(983,1,'2021-12-08 23:22:48','2021-12-08 23:22:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:22:48','2021-12-08 23:22:48','',9,'https://flaphotography.com/?p=983',0,'revision','',0),(981,1,'2021-12-08 23:07:57','2021-12-08 23:07:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:07:57','2021-12-08 23:07:57','',9,'https://flaphotography.com/?p=981',0,'revision','',0),(969,1,'2021-12-08 22:48:32','2021-12-08 22:48:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 22:48:32','2021-12-08 22:48:32','',9,'https://flaphotography.com/?p=969',0,'revision','',0),(970,1,'2021-12-08 22:49:48','2021-12-08 22:49:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$168 / 3</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 22:49:48','2021-12-08 22:49:48','',9,'https://flaphotography.com/?p=970',0,'revision','',0),(973,1,'2021-12-08 22:59:04','2021-12-08 22:59:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 22:59:04','2021-12-08 22:59:04','',9,'https://flaphotography.com/?p=973',0,'revision','',0),(972,1,'2021-12-08 22:57:15','2021-12-08 22:57:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 22:57:15','2021-12-08 22:57:15','',9,'https://flaphotography.com/?p=972',0,'revision','',0),(974,1,'2021-12-08 22:59:31','2021-12-08 22:59:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>\n<p>New Bundle Prices as of Dec 5</p>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"Starts at 3 retouched photos: 1 hour session, 1 outfit. $210 minus  20% off = $168\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 22:59:31','2021-12-08 22:59:31','',9,'https://flaphotography.com/?p=974',0,'revision','',0),(979,1,'2021-12-08 23:05:59','2021-12-08 23:05:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:05:59','2021-12-08 23:05:59','',9,'https://flaphotography.com/?p=979',0,'revision','',0),(978,1,'2021-12-08 23:04:40','2021-12-08 23:04:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:04:40','2021-12-08 23:04:40','',9,'https://flaphotography.com/?p=978',0,'revision','',0),(976,1,'2021-12-08 23:03:22','2021-12-08 23:03:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"1689px\" width=\"90%\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-33px||||false|false\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.50 hour session, 2 outfits, 2 BG, $390 minus 20% off = $312\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 4 outfits, 3 BG, $620 minus 20% off = $496\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#24294f\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" background_layout=\"dark\" use_icon_font_size=\"on\" body_text_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\" max_width=\"612px\" max_width_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:03:22','2021-12-08 23:03:22','',9,'https://flaphotography.com/?p=976',0,'revision','',0),(982,1,'2021-12-08 23:13:47','2021-12-08 23:13:47','[et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Pricing table Section','','publish','closed','closed','','pricing-table-section','','','2021-12-08 23:13:47','2021-12-08 23:13:47','',0,'https://flaphotography.com/et_pb_layout/pricing-table-section/',0,'et_pb_layout','',0),(986,1,'2021-12-08 23:25:31','2021-12-08 23:25:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:25:31','2021-12-08 23:25:31','',9,'https://flaphotography.com/?p=986',0,'revision','',0),(984,1,'2021-12-08 23:24:14','2021-12-08 23:24:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, and brown. \" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-08 23:24:14','2021-12-08 23:24:14','',9,'https://flaphotography.com/?p=984',0,'revision','',0),(987,1,'2021-12-08 23:26:37','2021-12-08 23:26:37','[et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Pricing table section2','','publish','closed','closed','','pricing-table-section2','','','2021-12-08 23:26:37','2021-12-08 23:26:37','',0,'https://flaphotography.com/et_pb_layout/pricing-table-section2/',0,'et_pb_layout','',0),(1104,1,'2021-12-19 02:04:37','2021-12-19 02:04:37','','','','inherit','open','closed','','mr-ed-img_7336-crop-1300px2','','','2022-06-29 04:10:17','2022-06-29 04:10:17','',0,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg',0,'attachment','image/jpeg',0),(998,1,'2021-12-09 01:27:46','2021-12-09 01:27:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 retouched photos, 1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:27:46','2021-12-09 01:27:46','',61,'https://flaphotography.com/?p=998',0,'revision','',0),(991,1,'2021-12-09 01:02:11','2021-12-09 01:02:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $325 minus 20% off = $260\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $600 minus 20% off = $480\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, red, and brown.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:02:11','2021-12-09 01:02:11','',61,'https://flaphotography.com/?p=991',0,'revision','',0),(996,1,'2021-12-09 01:26:26','2021-12-09 01:26:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 retouched photos, 1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $4808 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:26:26','2021-12-09 01:26:26','',61,'https://flaphotography.com/?p=996',0,'revision','',0),(993,1,'2021-12-09 01:03:19','2021-12-09 01:03:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#242424\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\"]<h1>$325 / 5</h1>\n<p>Ongoing Promo 20% Off</p>[/et_pb_text][et_pb_blurb title=\"In studio: Plan starts at 5  photos, $325 minus 20% off = $260\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"5 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $600 minus 20% off = $480\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of white, grey, black, red, and brown.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"#242424\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:03:19','2021-12-09 01:03:19','',61,'https://flaphotography.com/?p=993',0,'revision','',0),(995,1,'2021-12-09 01:22:52','2021-12-09 01:22:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 retouched photos, 1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:22:52','2021-12-09 01:22:52','',9,'https://flaphotography.com/?p=995',0,'revision','',0),(1004,1,'2021-12-09 01:51:19','2021-12-09 01:51:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professional retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:51:19','2021-12-09 01:51:19','',9,'https://flaphotography.com/?p=1004',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1000,1,'2021-12-09 01:32:17','2021-12-09 01:32:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professional retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:32:17','2021-12-09 01:32:17','',61,'https://flaphotography.com/?p=1000',0,'revision','',0),(1022,1,'2021-12-09 02:22:54','2021-12-09 02:22:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 02:22:54','2021-12-09 02:22:54','',61,'https://flaphotography.com/?p=1022',0,'revision','',0),(1021,1,'2021-12-09 02:21:27','2021-12-09 02:21:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 02:21:27','2021-12-09 02:21:27','',61,'https://flaphotography.com/?p=1021',0,'revision','',0),(1014,1,'2021-12-09 02:00:06','2021-12-09 02:00:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 02:00:06','2021-12-09 02:00:06','',61,'https://flaphotography.com/?p=1014',0,'revision','',0),(1002,1,'2021-12-09 01:33:07','2021-12-09 01:33:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" hover_enabled=\"0\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professional retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professional retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-09 01:33:07','2021-12-09 01:33:07','',61,'https://flaphotography.com/?p=1002',0,'revision','',0),(1326,1,'2022-06-29 04:07:57','2022-06-29 04:07:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 04:07:57','2022-06-29 04:07:57','',9,'https://flaphotography.com/?p=1326',0,'revision','',0),(1007,1,'2021-12-09 01:53:19','2021-12-09 01:53:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:53:19','2021-12-09 01:53:19','',9,'https://flaphotography.com/?p=1007',0,'revision','',0),(1006,1,'2021-12-09 01:52:11','2021-12-09 01:52:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 retouched photos, 1.5 hour session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:52:11','2021-12-09 01:52:11','',9,'https://flaphotography.com/?p=1006',0,'revision','',0),(1008,1,'2021-12-09 01:53:39','2021-12-09 01:53:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 retouched photos, 2.5 hour session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:53:39','2021-12-09 01:53:39','',9,'https://flaphotography.com/?p=1008',0,'revision','',0),(1011,1,'2021-12-09 01:56:01','2021-12-09 01:56:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:56:01','2021-12-09 01:56:01','',9,'https://flaphotography.com/?p=1011',0,'revision','',0),(1010,1,'2021-12-09 01:55:10','2021-12-09 01:55:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:55:10','2021-12-09 01:55:10','',9,'https://flaphotography.com/?p=1010',0,'revision','',0),(1040,1,'2021-12-11 13:50:27','2021-12-11 13:50:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:50:27','2021-12-11 13:50:27','',9,'https://flaphotography.com/?p=1040',0,'revision','',0),(1012,1,'2021-12-09 01:58:41','2021-12-09 01:58:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-09 01:58:41','2021-12-09 01:58:41','',9,'https://flaphotography.com/?p=1012',0,'revision','',0),(1015,1,'2021-12-09 02:04:14','2021-12-09 02:04:14','[et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Pricing table dual','','publish','closed','closed','','pricing-table-dual','','','2021-12-09 02:04:14','2021-12-09 02:04:14','',0,'https://flaphotography.com/et_pb_layout/pricing-table-dual/',0,'et_pb_layout','',0),(1019,1,'2021-12-09 02:19:43','2021-12-09 02:19:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:19:43','2021-12-09 02:19:43','',25,'https://flaphotography.com/?p=1019',0,'revision','',0),(1017,1,'2021-12-09 02:12:46','2021-12-09 02:12:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:12:46','2021-12-09 02:12:46','',25,'https://flaphotography.com/?p=1017',0,'revision','',0),(1025,1,'2021-12-09 02:25:53','2021-12-09 02:25:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:25:53','2021-12-09 02:25:53','',25,'https://flaphotography.com/?p=1025',0,'revision','',0),(1020,1,'2021-12-09 02:20:01','2021-12-09 02:20:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hour session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:20:01','2021-12-09 02:20:01','',25,'https://flaphotography.com/?p=1020',0,'revision','',0),(1023,1,'2021-12-09 02:24:11','2021-12-09 02:24:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:24:11','2021-12-09 02:24:11','',25,'https://flaphotography.com/?p=1023',0,'revision','',0),(1024,1,'2021-12-09 02:24:33','2021-12-09 02:24:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" custom_padding=\"6px|6px|6px|6px|true|true\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_blurb title=\"Plan starts at 6 retouched photos, $342. For  1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||66px||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"6 retouched photos: 1.5 hour session, 2 outfits.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"10 retouched photos: 3 hours session, 3 outfits. $520\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper, choice of 5 colors.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the exact representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(213,60,34,0.8)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||66px\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"274px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:24:33','2021-12-09 02:24:33','',25,'https://flaphotography.com/?p=1024',0,'revision','',0),(1027,1,'2021-12-09 02:28:47','2021-12-09 02:28:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:28:47','2021-12-09 02:28:47','',25,'https://flaphotography.com/?p=1027',0,'revision','',0),(1026,1,'2021-12-09 02:28:02','2021-12-09 02:28:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d53c22\" background_color_gradient_end=\"#0c71c3\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:28:02','2021-12-09 02:28:02','',25,'https://flaphotography.com/?p=1026',0,'revision','',0),(1028,1,'2021-12-09 02:32:19','2021-12-09 02:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"#6b537a\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(47,129,195,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:32:19','2021-12-09 02:32:19','',25,'https://flaphotography.com/?p=1028',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1029,1,'2021-12-09 02:34:12','2021-12-09 02:34:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-09 02:34:12','2021-12-09 02:34:12','',25,'https://flaphotography.com/?p=1029',0,'revision','',0),(1032,1,'2021-12-09 13:08:41','2021-12-09 13:08:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS NOV 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-09 13:08:41','2021-12-09 13:08:41','',463,'https://flaphotography.com/?p=1032',0,'revision','',0),(1065,1,'2021-12-11 15:06:24','2021-12-11 15:06:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:06:24','2021-12-11 15:06:24','',463,'https://flaphotography.com/?p=1065',0,'revision','',0),(1031,1,'2021-12-09 13:07:37','2021-12-09 13:07:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS NOV 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Message\" field_title=\"Type your message\" field_type=\"text\" required_mark=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/10/HUGE-30-OFF-FINAL-3.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-09 13:07:37','2021-12-09 13:07:37','',463,'https://flaphotography.com/?p=1031',0,'revision','',0),(1034,1,'2021-12-09 13:14:32','2021-12-09 13:14:32','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 20 OFF PROMO FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-12-09 13:14:32','2021-12-09 13:14:32','',367,'https://flaphotography.com/?p=1034',0,'revision','',0),(1038,1,'2021-12-09 15:40:36','2021-12-09 15:40:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" hover_enabled=\"0\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" sticky_enabled=\"0\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-09 15:40:36','2021-12-09 15:40:36','',463,'https://flaphotography.com/?p=1038',0,'revision','',0),(1035,1,'2021-12-09 13:14:34','2021-12-09 13:14:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS NOV 20 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker (reg. $65 / photo)%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model  (reg. $69 / photo)%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple  (reg. $57 / photo)%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business (reg. $65 / photo)%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" title_text=\"HUGE 20 OFF PROMO FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-09 13:14:34','2021-12-09 13:14:34','',463,'https://flaphotography.com/?p=1035',0,'revision','',0),(1043,1,'2021-12-11 13:52:24','2021-12-11 13:52:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\"][/et_pb_button][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\"][/et_pb_button][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\"][/et_pb_button][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:52:24','2021-12-11 13:52:24','',9,'https://flaphotography.com/?p=1043',0,'revision','',0),(1042,1,'2021-12-11 13:51:53','2021-12-11 13:51:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:51:53','2021-12-11 13:51:53','',9,'https://flaphotography.com/?p=1042',0,'revision','',0),(1048,1,'2021-12-11 13:59:57','2021-12-11 13:59:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\" button_text_size=\"22px\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"20px\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\" button_text_size=\"22px\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"20px\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:59:57','2021-12-11 13:59:57','',9,'https://flaphotography.com/?p=1048',0,'revision','',0),(1046,1,'2021-12-11 13:56:40','2021-12-11 13:56:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\" button_text_size=\"22px\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"20px\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\" button_text_size=\"22px\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"20px\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\" button_text_size=\"22px\" button_text_size_last_edited=\"on|phone\" button_text_size_phone=\"20px\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:56:40','2021-12-11 13:56:40','',9,'https://flaphotography.com/?p=1046',0,'revision','',0),(1045,1,'2021-12-11 13:55:46','2021-12-11 13:55:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_text=\"GET THIS OFFER\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" button_alignment=\"center\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_url=\"https://flaphotography.com/promotion/\" custom_margin=\"-23px||51px||false|false\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" background_color=\"#ff0000\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 13:55:46','2021-12-11 13:55:46','',9,'https://flaphotography.com/?p=1045',0,'revision','',0),(1047,1,'2021-12-11 13:59:54','2021-12-11 13:59:54','[et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" background_color_gradient_direction=\"160deg\" sticky_enabled=\"0\" template_type=\"module\"]<p>New $168 (20% Off)</p>[/et_pb_text]','Offer button','','publish','closed','closed','','offer-button','','','2021-12-11 13:59:54','2021-12-11 13:59:54','',0,'https://flaphotography.com/et_pb_layout/offer-button/',0,'et_pb_layout','',0),(1049,1,'2021-12-11 14:02:27','2021-12-11 14:02:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 14:02:27','2021-12-11 14:02:27','',9,'https://flaphotography.com/?p=1049',0,'revision','',0),(1050,1,'2021-12-11 14:03:06','2021-12-11 14:03:06','[et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\" template_type=\"module\"][/et_pb_button]','Get offer button','','publish','closed','closed','','get-offer-button','','','2021-12-11 14:03:06','2021-12-11 14:03:06','',0,'https://flaphotography.com/et_pb_layout/get-offer-button/',0,'et_pb_layout','',0),(1052,1,'2021-12-11 14:07:40','2021-12-11 14:07:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-11 14:07:40','2021-12-11 14:07:40','',61,'https://flaphotography.com/?p=1052',0,'revision','',0),(1102,1,'2021-12-11 17:41:22','2021-12-11 17:41:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-11 17:41:22','2021-12-11 17:41:22','',61,'https://flaphotography.com/?p=1102',0,'revision','',0),(1054,1,'2021-12-11 14:10:57','2021-12-11 14:10:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\" button_font=\"Arial|600|||||||\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" sticky_enabled=\"0\" button_font=\"Arial|600|||||||\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/couples-family-sessions/\" button_text=\"COUPLES & FAMILY SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-11 14:10:57','2021-12-11 14:10:57','',61,'https://flaphotography.com/?p=1054',0,'revision','',0),(1062,1,'2021-12-11 14:40:15','2021-12-11 14:40:15','','','','inherit','open','closed','','faith-heart-img_6894-2000px-s','','','2022-06-29 04:10:32','2022-06-29 04:10:32','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S.jpg',0,'attachment','image/jpeg',0),(1061,1,'2021-12-11 14:40:07','2021-12-11 14:40:07','','','','inherit','open','closed','','faith-happiness-img_6921-2000px-s','','','2022-06-29 04:10:35','2022-06-29 04:10:35','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg',0,'attachment','image/jpeg',0),(1274,1,'2022-06-29 00:52:06','2022-06-29 00:52:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 00:52:06','2022-06-29 00:52:06','',9,'https://flaphotography.com/?p=1274',0,'revision','',0),(1270,1,'2022-06-27 16:42:45','2022-06-27 16:42:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-27 16:42:45','2022-06-27 16:42:45','',9,'https://flaphotography.com/?p=1270',0,'revision','',0),(1103,1,'2021-12-11 17:42:25','2021-12-11 17:42:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\" title_text=\"FAITH-JOY-6885-2000PX-S\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\" title_text=\"Faith-Heart-IMG_6894-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 17:42:25','2021-12-11 17:42:25','',9,'https://flaphotography.com/?p=1103',0,'revision','',0),(1059,1,'2021-12-11 14:22:12','2021-12-11 14:22:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-3000PX5-scaled.jpg\" title_text=\"Faith-Happiness-IMG_6921-3000PX5\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-4000PX-CROP8-scaled.jpg\" title_text=\"FAITH-JOY-6885-4000PX-CROP8\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Prayer-IMG_6915-4000PX2-scaled.jpg\" title_text=\"Faith-Prayer-IMG_6915-4000PX2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 14:22:12','2021-12-11 14:22:12','',9,'https://flaphotography.com/?p=1059',0,'revision','',0),(1066,1,'2021-12-11 15:07:17','2021-12-11 15:07:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:07:17','2021-12-11 15:07:17','',463,'https://flaphotography.com/?p=1066',0,'revision','',0),(1071,1,'2021-12-11 15:17:39','2021-12-11 15:17:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" custom_margin=\"||14px||false|false\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" custom_margin=\"||14px||false|false\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-11 15:17:39','2021-12-11 15:17:39','',25,'https://flaphotography.com/?p=1071',0,'revision','',0),(1063,1,'2021-12-11 14:40:26','2021-12-11 14:40:26','','','','inherit','open','closed','','faith-joy-6885-2000px-s','','','2022-06-29 04:10:29','2022-06-29 04:10:29','',0,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg',0,'attachment','image/jpeg',0),(1064,1,'2021-12-11 14:54:32','2021-12-11 14:54:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\" title_text=\"FAITH-JOY-6885-2000PX-S\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\" title_text=\"Faith-Heart-IMG_6894-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\" title_text=\"ANDREW-BOSS-IMG_2437-4000PX-FREQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\" title_text=\"STEPHANIE-IMG_2526-3500PX-RNW\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://fotopens.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-11 14:54:32','2021-12-11 14:54:32','',9,'https://flaphotography.com/?p=1064',0,'revision','',0),(1068,1,'2021-12-11 15:14:41','2021-12-11 15:14:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other-Customized%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:14:41','2021-12-11 15:14:41','',463,'https://flaphotography.com/?p=1068',0,'revision','',0),(1070,1,'2021-12-11 15:15:59','2021-12-11 15:15:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other-Customized%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:15:59','2021-12-11 15:15:59','',463,'https://flaphotography.com/?p=1070',0,'revision','',0),(1072,1,'2021-12-11 15:20:17','2021-12-11 15:20:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" border_width_all=\"7px\" border_color_all=\"#d53c22\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:20:17','2021-12-11 15:20:17','',463,'https://flaphotography.com/?p=1072',0,'revision','',0),(1073,1,'2021-12-11 15:47:08','2021-12-11 15:47:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 15:47:08','2021-12-11 15:47:08','',463,'https://flaphotography.com/?p=1073',0,'revision','',0),(1099,1,'2021-12-11 17:08:52','2021-12-11 17:08:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 17:08:52','2021-12-11 17:08:52','',463,'https://flaphotography.com/?p=1099',0,'revision','',0),(1098,1,'2021-12-11 17:06:53','2021-12-11 17:06:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 17:06:53','2021-12-11 17:06:53','',463,'https://flaphotography.com/?p=1098',0,'revision','',0),(1074,1,'2021-12-11 16:05:58','2021-12-11 16:05:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:05:58','2021-12-11 16:05:58','',463,'https://flaphotography.com/?p=1074',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1077,1,'2021-12-11 16:09:09','2021-12-11 16:09:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:09:09','2021-12-11 16:09:09','',463,'https://flaphotography.com/?p=1077',0,'revision','',0),(1076,1,'2021-12-11 16:08:02','2021-12-11 16:08:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:08:02','2021-12-11 16:08:02','',463,'https://flaphotography.com/?p=1076',0,'revision','',0),(1080,1,'2021-12-11 16:18:18','2021-12-11 16:18:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:18:18','2021-12-11 16:18:18','',463,'https://flaphotography.com/?p=1080',0,'revision','',0),(1094,1,'2021-12-11 16:51:56','2021-12-11 16:51:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for your reservation! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:51:56','2021-12-11 16:51:56','',463,'https://flaphotography.com/?p=1094',0,'revision','',0),(1079,1,'2021-12-11 16:14:55','2021-12-11 16:14:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:14:55','2021-12-11 16:14:55','',463,'https://flaphotography.com/?p=1079',0,'revision','',0),(1081,1,'2021-12-11 16:19:41','2021-12-11 16:19:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Did you share our Huge promotion post?||et_pb_line_break_holder||%%shared%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:19:41','2021-12-11 16:19:41','',463,'https://flaphotography.com/?p=1081',0,'revision','',0),(1084,1,'2021-12-11 16:31:56','2021-12-11 16:31:56','','','','inherit','open','closed','','cnj-vision-1000px','','','2022-06-29 04:10:26','2022-06-29 04:10:26','',0,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg',0,'attachment','image/jpeg',0),(1085,1,'2021-12-11 16:34:53','2021-12-11 16:34:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"|0px||||\" min_height=\"527px\"][/et_pb_image][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|23px|||false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:34:53','2021-12-11 16:34:53','',463,'https://flaphotography.com/?p=1085',0,'revision','',0),(1083,1,'2021-12-11 16:25:02','2021-12-11 16:25:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|15px|15px|15px|true|true\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#E02B20\" text_font_size=\"18px\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_line_height=\"1.3em\" header_font_size_tablet=\"\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\"]<h1>CONDITIONS TO QUALIFY:</h1>\n<p>1. You must kindly share to your social media feed the \"BIG 20% Off Promotion\" posted on our facebook or instagram page.</p>[/et_pb_text][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:25:02','2021-12-11 16:25:02','',463,'https://flaphotography.com/?p=1083',0,'revision','',0),(1088,1,'2021-12-11 16:39:31','2021-12-11 16:39:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|16px||0px|false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:39:31','2021-12-11 16:39:31','',463,'https://flaphotography.com/?p=1088',0,'revision','',0),(1087,1,'2021-12-11 16:38:10','2021-12-11 16:38:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#d53c22\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:38:10','2021-12-11 16:38:10','',463,'https://flaphotography.com/?p=1087',0,'revision','',0),(1089,1,'2021-12-11 16:40:33','2021-12-11 16:40:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#a02b16\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"2. BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans||||||||\" title_text_color=\"#000000\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|16px||0px|false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:40:33','2021-12-11 16:40:33','',463,'https://flaphotography.com/?p=1089',0,'revision','',0),(1091,1,'2021-12-11 16:41:56','2021-12-11 16:41:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#a02b16\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|16px||0px|false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:41:56','2021-12-11 16:41:56','',463,'https://flaphotography.com/?p=1091',0,'revision','',0),(1093,1,'2021-12-11 16:46:28','2021-12-11 16:46:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#a02b16\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|16px||0px|false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:46:28','2021-12-11 16:46:28','',463,'https://flaphotography.com/?p=1093',0,'revision','',0),(1092,1,'2021-12-11 16:42:27','2021-12-11 16:42:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column _builder_version=\"4.9.7\" _module_preset=\"default\" type=\"4_4\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" _builder_version=\"4.9.7\" _module_preset=\"default\" title_text=\"CNJ-VISION-1000px\" hover_enabled=\"0\" sticky_enabled=\"0\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#a02b16\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for signing up! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#000000\" button_bg_color=\"#FFFFFF\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" border_color_all=\"#6B6B6B\" border_width_all=\"1px\" custom_padding=\"|16px||0px|false|false\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Shared\" field_title=\"Did you share our BIG 20% OFF Promotion post to your social media?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, I shared.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Not yet. But I will. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:42:27','2021-12-11 16:42:27','',463,'https://flaphotography.com/?p=1092',0,'revision','',0),(1097,1,'2021-12-11 16:59:51','2021-12-11 16:59:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for your reservation! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:59:51','2021-12-11 16:59:51','',463,'https://flaphotography.com/?p=1097',0,'revision','',0),(1096,1,'2021-12-11 16:54:49','2021-12-11 16:54:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%businessname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%||et_pb_line_break_holder||\" success_message=\"Thanks for your reservation! You\'ll be responded shortly. \" submit_button_text=\"Submit\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"%%45%%\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\" button_bg_enable_color=\"on\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Social Marketing%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-11 16:54:49','2021-12-11 16:54:49','',463,'https://flaphotography.com/?p=1096',0,'revision','',0),(1101,1,'2021-12-11 17:39:01','2021-12-11 17:39:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#FFFFFF\" icon_placement=\"left\" use_icon_font_size=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"%%188%%\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.9.7\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"%%36%%\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-11 17:39:01','2021-12-11 17:39:01','',25,'https://flaphotography.com/?p=1101',0,'revision','',0),(1105,1,'2021-12-19 02:05:34','2021-12-19 02:05:34','','','','inherit','open','closed','','destiny-img_7351-1300px2','','','2022-06-29 04:10:15','2022-06-29 04:10:15','',0,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg',0,'attachment','image/jpeg',0),(1124,1,'2021-12-19 03:07:59','2021-12-19 03:07:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 03:07:59','2021-12-19 03:07:59','',9,'https://flaphotography.com/?p=1124',0,'revision','',0),(1106,1,'2021-12-19 02:05:58','2021-12-19 02:05:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\" title_text=\"FAITH-JOY-6885-2000PX-S\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\" title_text=\"Faith-Heart-IMG_6894-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 02:05:58','2021-12-19 02:05:58','',9,'https://flaphotography.com/?p=1106',0,'revision','',0),(1109,1,'2021-12-19 02:10:29','2021-12-19 02:10:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\" title_text=\"FAITH-JOY-6885-2000PX-S\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" custom_padding=\"10px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 02:10:29','2021-12-19 02:10:29','',9,'https://flaphotography.com/?p=1109',0,'revision','',0),(1107,1,'2021-12-19 02:07:42','2021-12-19 02:07:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\" title_text=\"FAITH-JOY-6885-2000PX-S\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\" title_text=\"Faith-Heart-IMG_6894-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" custom_padding=\"10px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 02:07:42','2021-12-19 02:07:42','',9,'https://flaphotography.com/?p=1107',0,'revision','',0),(1110,1,'2021-12-19 02:18:19','2021-12-19 02:18:19','','','','inherit','open','closed','','faith-joy-6885-1500px-crop8-2','','','2022-07-01 20:26:06','2022-07-01 20:26:06','',0,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg',0,'attachment','image/jpeg',0),(1117,1,'2021-12-19 02:48:51','2021-12-19 02:48:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" module_id=\"CorporatePrice-Section\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 02:48:51','2021-12-19 02:48:51','',9,'https://flaphotography.com/?p=1117',0,'revision','',0),(1111,1,'2021-12-19 02:18:44','2021-12-19 02:18:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PROMOTION LABEL\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"30px||32px|||\" global_module=\"848\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"24px\" link_text_color=\"#FFFFFF\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" text_orientation=\"center\" link_font_size_tablet=\"19px\" link_font_size_phone=\"16px\" link_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" link_font_size__hover_enabled=\"off|desktop\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#B3B3B3\"]<p><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - RESERVE HERE</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" global_colors_info=\"{}\" custom_padding=\"10px|||||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 02:18:44','2021-12-19 02:18:44','',9,'https://flaphotography.com/?p=1111',0,'revision','',0),(1158,1,'2022-03-24 02:56:54','2022-03-24 02:56:54','','','','inherit','open','closed','','marvelous-fashion-2-img_9010-900px','','','2022-06-29 04:09:59','2022-06-29 04:09:59','',0,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg',0,'attachment','image/jpeg',0),(1114,1,'2021-12-19 02:49:39','2021-12-19 02:49:39','[et_pb_section fb_built=\"1\" admin_label=\"Section\" module_id=\"divi-bars-center-all\" _builder_version=\"4.18.0\" background_color=\"#E02B20\" background_color_gradient_direction=\"90deg\" background_color_gradient_start=\"#f47a6b\" background_color_gradient_end=\"rgba(244,122,107,0.87)\" custom_padding=\"0px||0px|\" custom_css_main_element=\"}#ts-nav-color-strip {|| display: none;||}||.sep {display: none !important;}||||.et_pb_countdown_timer .section p.value {|| margin-right: 15px !important;||}||.et_pb_column_1_3 .et_pb_countdown_timer .section p.label {||line-height: 5px !important;||font-size: 12px !important;||}||.et_pb_column_1_3 .et_pb_countdown_timer .section p {||font-size: 20px !important;||}||.days {||margin-right: 10px !important;\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.18.0\" width_tablet=\"80%\" width_phone=\"80%\" width_last_edited=\"on|desktop\" max_width_tablet=\"80%\" max_width_phone=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\" make_fullwidth=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" background_position=\"top_left\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"22px\" text_letter_spacing=\"1px\" header_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" module_alignment=\"center\" custom_padding=\"0px||0px|\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"center\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|desktop\" custom_css_main_element=\"vertical-align: middle !important;\" global_colors_info=\"{}\"]<p>BIG 20% OFF!! - All Photography Styles</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" background_position=\"top_left\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_countdown_timer date_time=\"2022-04-30 12:00\" _builder_version=\"4.16\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" numbers_font=\"Arial||||||||\" numbers_text_color=\"#FFFFFF\" separator_font=\"Arial||||||||\" separator_text_color=\"#FFFFFF\" label_font=\"Arial||||||||\" label_text_align=\"center\" use_background_color=\"off\" custom_margin=\"10px||10px|\" header_font_size_tablet=\"\" header_font_size_phone=\"\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_countdown_timer][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" background_position=\"top_left\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"LEARN MORE\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_radius=\"20\" button_font=\"|||on|||||\" button_use_icon=\"off\" custom_padding=\"2px|15px|2px|15px\" box_shadow_style=\"preset1\" box_shadow_spread=\"1px\" button_text_color_hover=\"#2b2b2b\" button_border_radius_hover=\"20\" button_bg_color_hover=\"rgba(255,255,255,0.9)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#c4c4c4\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"on|hover\" button_border_radius__hover=\"18px\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#000000\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','20 OFF SALE','','draft','closed','closed','','25-off-sale','','','2022-09-08 12:34:19','2022-09-08 12:34:19','',0,'https://flaphotography.com/?post_type=divi_bars&#038;p=1114',0,'divi_bars','',0),(1136,1,'2021-12-20 02:10:51','2021-12-20 02:10:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.14.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-20 02:10:51','2021-12-20 02:10:51','',9,'https://flaphotography.com/?p=1136',0,'revision','',0),(1125,1,'2021-12-19 03:15:09','2021-12-19 03:15:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.14.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-19 03:15:09','2021-12-19 03:15:09','',9,'https://flaphotography.com/?p=1125',0,'revision','',0),(1449,1,'2022-07-01 21:41:37','2022-07-01 21:41:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.97) 1%|rgba(140,140,140,0.87) 100%\" background_blend=\"overlay\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" header_text_color=\"#D6D6D6\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" parallax=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:41:37','2022-07-01 21:41:37','',61,'https://flaphotography.com/?p=1449',0,'revision','',0),(1126,1,'2021-12-19 03:19:39','2021-12-19 03:19:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.9.7\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\" custom_padding=\"4px|||||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/promotion/\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-19 03:19:39','2021-12-19 03:19:39','',61,'https://flaphotography.com/?p=1126',0,'revision','',0),(1127,1,'2021-12-19 03:26:55','2021-12-19 03:26:55','/*** TO FIX BLOOM OPTIN POP UP***/\r\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\r\n    height: auto!important;\r\n}\r\n\r\n/***DROP DOWN MENU TEXT SIZE***/\r\n.et_pb_menu li li a {\r\nfont-size: 14px !important;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\r\n.first_contact .et_pb_contact_field_options_title {\r\n  color: black;\r\n}\r\n\r\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\r\n.second_form .et_pb_contact_field_options_title {\r\n  color: white;\r\n}\r\n\r\n\r\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: black!important;\r\n}\r\n\r\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\r\n.et-db #et-boc .et-l {\r\n    color: black;\r\n    font-weight: bold;\r\n}\r\n\r\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\r\n#top-header .et-cart-info {\r\n    margin-left: 15px;\r\n    margin-right: 10px;\r\n    display: none;\r\n}\r\n\r\n\r\n/***CONTACT FORM SUCESS MESSAGE FONT***/\r\n.et-pb-contact-message {\r\ncolor: black;\r\nfont-size: 16px;\r\ntext-align: center;\r\n}\r\n\r\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\r\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\r\n    color: #d53c22!important;\r\n}\r\n\r\n\r\n/* Hide Divi Main Navigation Menu */\r\n#main-header { display:none; }\r\n#page-container { \r\n	padding-top:0px !important; \r\n	margin-top:-1px !important \r\n}\r\n\r\n\r\n.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 700px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 500px;\r\n}\r\n@media (max-width: 768px){\r\n	.et_pb_menu li li a {\r\n    font-size: 14px!important;\r\n    width: 200px;\r\n}\r\n.et_pb_menu__menu>nav>ul>li>ul {\r\n    width: 200px;\r\n}\r\n}\r\n	\r\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\r\n@media screen and (max-width:1280px){\r\n.et_pb_menu_0.et_pb_menu ul li a {\r\nfont-size: 16px !important;\r\n}\r\n}\r\n@media screen and (max-width:1024px){\r\n.et_pb_menu_0.et_pb_menu ul li a {\r\nfont-size: 16px !important;\r\n}\r\n}\r\n/***TO SET BACK MOBILE MENU FONT SIZE****/\r\n@media screen and (max-width:600px){\r\n.et_pb_menu_0.et_pb_menu ul li a {\r\nfont-size: 20px !important;\r\n}\r\n}\r\n\r\n@media screen and (max-width: 980px) {\r\n    .logo_container {\r\n        text-align: center!important;\r\n    }\r\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2021-12-19 03:26:55','2021-12-19 03:26:55','',197,'https://flaphotography.com/?p=1127',0,'revision','',0),(1165,1,'2022-03-24 14:07:11','2022-03-24 14:07:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 14:07:11','2022-03-24 14:07:11','',85,'https://flaphotography.com/?p=1165',0,'revision','',0),(1129,1,'2021-12-19 03:48:38','2021-12-19 03:48:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" menu_style=\"centered\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.0.9\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.0.9\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - ENDS DEC 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.9.7\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.9.7\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.0.9\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.9.7\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.9.7\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.9.7\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"3.25\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2021-12-19 03:48:38','2021-12-19 03:48:38','',85,'https://flaphotography.com/?p=1129',0,'revision','',0),(1131,1,'2021-12-20 01:47:59','2021-12-20 01:47:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.13.1\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','RESERVATION CONTACT SECTION','','publish','closed','closed','','reservation-contact-section','','','2021-12-20 01:47:59','2021-12-20 01:47:59','',0,'https://flaphotography.com/et_pb_layout/reservation-contact-section/',0,'et_pb_layout','',0),(1132,1,'2021-12-20 01:48:46','2021-12-20 01:48:46','[et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.13.1\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row]','CONTACT RESERV-RAW','','publish','closed','closed','','contact-reserv-raw','','','2021-12-20 01:48:46','2021-12-20 01:48:46','',0,'https://flaphotography.com/et_pb_layout/contact-reserv-raw/',0,'et_pb_layout','',0),(1133,1,'2021-12-20 01:59:31','2021-12-20 01:59:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#f4f4f4 0%|#dbdbdb 100%\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"MAKE A RESERVATION\" custom_message=\"BRANDING PHOTOSHOOT BOOKED||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder||%%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%package%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date Booked:||et_pb_line_break_holder||%%date-time-picker%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" module_class=\"cu-form\" _builder_version=\"4.18.0\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Select your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22 Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Branding - Lifestyle, Artists, Creators%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Personal Branding - On Location%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Package\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22$210 / 3 Retouched Photos%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22$349 / 6 Retouched Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22$449 / 10 Retouched Photos%22,%22checked%22:0,%22dragID%22:1}%93\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22your-needs%22,%22condition%22:%22is%22,%22value%22:%22Corporate Headshots%22},{%22field%22:%22your-needs%22,%22condition%22:%22is%22,%22value%22:%22 Corporate Shots on Location%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date-time-picker\" field_title=\"What date would you like the services?\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is not empty%22,%22value%22:%22$210 / 3 Retouched Photos%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is not empty%22,%22value%22:%22$210 / 3 Retouched Photos%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Branding Photography Contact','','publish','closed','closed','','branding-photography-contact','','','2022-09-16 20:16:49','2022-09-16 20:16:49','',0,'https://flaphotography.com/?post_type=divi_overlay&#038;p=1133',0,'divi_overlay','',0),(1135,1,'2021-12-20 02:07:00','2021-12-20 02:07:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.14.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\" title_text=\"Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1\" show_in_lightbox=\"on\" _builder_version=\"4.11.2\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1133\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1133\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1133\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-20 02:07:00','2021-12-20 02:07:00','',9,'https://flaphotography.com/?p=1135',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1137,1,'2021-12-20 02:47:07','2021-12-20 02:47:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg\" title_text=\"Grace-IMG_5247-1.1500PX-CROP\" align=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#f4f4f4 0%|#dbdbdb 100%\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"MAKE A RESERVATION\" custom_message=\"FASHION PHOTOSHOOT BOOKED||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder||%%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%package%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date Booked:||et_pb_line_break_holder||%%date-time-picker%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.17.4\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Select your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Full Body Shots%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22On Location%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Package\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22$299 / 5 Retouched Photos%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22$449 / 10 Retouched Photos%22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date-time-picker\" field_title=\"What date would you like the services?\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is not empty%22,%22value%22:%22$299 / 5 Retouched Photos%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is not empty%22,%22value%22:%22$299 / 5 Retouched Photos%22}%93\" sticky_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Fashion Photography Contact','','publish','closed','closed','','fashion-photography-contact','','','2022-07-02 21:22:12','2022-07-02 21:22:12','',0,'https://flaphotography.com/?post_type=divi_overlay&#038;p=1137',0,'divi_overlay','',0),(1141,1,'2021-12-20 02:51:08','2021-12-20 02:51:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1137\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1137\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-20 02:51:08','2021-12-20 02:51:08','',61,'https://flaphotography.com/?p=1141',0,'revision','',0),(1140,1,'2021-12-20 02:46:53','2021-12-20 02:46:53','','','','inherit','open','closed','','grace-img_5247-1-1500px-crop','','','2022-07-12 15:32:29','2022-07-12 15:32:29','',1137,'https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg',0,'attachment','image/jpeg',0),(1233,1,'2022-03-25 00:27:03','2022-03-25 00:27:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2022-03-25 00:27:03','2022-03-25 00:27:03','',25,'https://flaphotography.com/?p=1233',0,'revision','',0),(1142,1,'2021-12-20 02:55:49','2021-12-20 02:55:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"33px||32px|||\" bottom_divider_color=\"#d53c22\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>COUPLES &amp; FAMILY SESSIONS</h1>\n<p>Couples, family, &amp; photo booth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"||11px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\" title_text=\"Young-X-Emperor-IMG_0010-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" title_text=\"Ash-the-king-and-queen-IMG_0001_2500px-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Couples Session</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"COUPLES PHOTOS\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(86,27,137,0.84)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\" title_text=\"FlowCouple-Glass-IMG_0400-2500px-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.87)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party Booth<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\" title_text=\"Thairu-flow-SOFTBOX-TETHERING-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.86)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" link_option_url=\"https://fotopens.com/couples-family-sessions\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" background__hover_enabled=\"on|hover\" background_color__hover=\"#d53c22\" background_enable_color__hover=\"on\"]<p style=\"text-align: center;\"><strong>Learn About Photo Booth Services<br /></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\" title_text=\"FLOW-COUPLE-IMG_0415-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" title_text=\"FLOW-THAIRU-LOVE-IMG_0414-2500PX-2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\" title_text=\"Lovers-shot-IMG_9632-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\" title_text=\"Dad-mom-Flow-kiss-IMG_0486-2500px-3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"rgba(255,255,255,0.8)\" text_font_size=\"16px\" text_letter_spacing=\"3px\" text_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.14)\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Engagement Party<br /></strong></p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\" title_text=\"Thairu-mom-IMG_0468-2500px2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\" title_text=\"Q-THAIRU-CROSS-IMG_0423-2500PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\" title_text=\"Thairu-Dad-IMG_0448-2500px\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(86,27,137,0.84)\" background_color_gradient_end=\"#000000\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1137\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$342 / 6</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $273.60 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"||14px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" module_id=\"overlay_unique_id_1137\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$520 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $416 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/promotion\" button_text=\"GET BIG 20% OFF HERE\" button_alignment=\"left\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','COUPLES & FAMILY SESSIONS','','inherit','closed','closed','','25-revision-v1','','','2021-12-20 02:55:49','2021-12-20 02:55:49','',25,'https://flaphotography.com/?p=1142',0,'revision','',0),(1409,1,'2022-07-01 04:37:23','2022-07-01 04:37:23','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-01 04:37:23','2022-07-01 04:37:23','',367,'https://flaphotography.com/?p=1409',0,'revision','',0),(1183,1,'2022-03-24 23:09:43','2022-03-24 23:09:43','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-03-24 23:09:43','2022-03-24 23:09:43','',367,'https://flaphotography.com/?p=1183',0,'revision','',0),(1144,1,'2021-12-20 03:03:04','2021-12-20 03:03:04','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2021-12-20 03:03:04','2021-12-20 03:03:04','',367,'https://flaphotography.com/?p=1144',0,'revision','',0),(1145,1,'2021-12-20 03:03:08','2021-12-20 03:03:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"5px||8px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"8px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Open Sans||||||||\" text_text_color=\"#d53c22\" text_letter_spacing=\"3px\" text_line_height=\"1.3em\" header_font=\"Open Sans||||||||\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"24px\" header_letter_spacing=\"3px\" header_line_height=\"1.3em\" text_orientation=\"center\" custom_padding=\"||11px|||\" header_font_size_tablet=\"24px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>BIG 20% OFF</h1>\n<p>PROMO ENDS DEC 30 2021</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\" title_text=\"CNJ-VISION-1000px\" align=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"BIG 20% OFF RESERVATION\" custom_message=\"FREE PHOTOS SIGN UP:||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder|| %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Who are you?||et_pb_line_break_holder||%%who%%||et_pb_line_break_holder||||et_pb_line_break_holder||Name of the company:||et_pb_line_break_holder||%%Companyname%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%Businesspackage%%||et_pb_line_break_holder||%%Fashionpackage%%||et_pb_line_break_holder||%%Couplepackage%%||et_pb_line_break_holder||||et_pb_line_break_holder||When:||et_pb_line_break_holder||%%when%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date:||et_pb_line_break_holder||%%date%%||et_pb_line_break_holder||||et_pb_line_break_holder||Is it your first time in a studio setting?||et_pb_line_break_holder||%%Firsttime%%||et_pb_line_break_holder||||et_pb_line_break_holder||Heard from?||et_pb_line_break_holder||%%heardfrom%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.13.1\" _module_preset=\"default\" _unique_id=\"226c1f60-302d-4b0b-8290-bb0df33fe8a7\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.9.7\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Who\" field_title=\"Who are you?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22A Company, Business%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Artist. Musician, Speaker%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22A Model / Fashion%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Couple%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Businesspackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $168 / 3%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $312 / 6%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Special $496 / 10%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Fashionpackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $260 / 5%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $480 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Model / Fashion%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Couplepackage\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Special $274 / 6%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Special $416 / 10%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Customized-Over 10 photos%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Couple%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Companyname\" field_title=\"Name of your company?\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Please checkmark your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Group Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Photos of Products or Services%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Modeling Photos for Apparels%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"when\" field_title=\"What date would you like the services?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22In a week.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22In two weeks.%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22In a month.%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22I\'ll give a specific date.%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date\" field_title=\"Please enter date (dd/mm/yy)\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22when%22,%22condition%22:%22is%22,%22value%22:%22I\'ll give a specific date.%22}%93\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Firsttime\" field_title=\"Is it your first time in a studio setting?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Yes, it is.%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22No, it is not. %22,%22checked%22:0,%22dragID%22:0}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Heardfrom\" field_title=\"How did you hear about this offer?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Social Media Post%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22A Friend%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Other%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (optional)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FLAP PROMOTION','','inherit','closed','closed','','463-revision-v1','','','2021-12-20 03:03:08','2021-12-20 03:03:08','',463,'https://flaphotography.com/?p=1145',0,'revision','',0),(1161,1,'2022-03-24 03:00:14','2022-03-24 03:00:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-24 03:00:14','2022-03-24 03:00:14','',61,'https://flaphotography.com/?p=1161',0,'revision','',0),(1147,1,'2021-12-20 03:12:49','2021-12-20 03:12:49','','','','inherit','open','closed','','meranda_mg_9390-2500px-rnew-crop-2','','','2022-06-29 04:09:55','2022-06-29 04:09:55','',0,'https://flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg',0,'attachment','image/jpeg',0),(1148,1,'2021-12-20 03:19:20','2021-12-20 03:19:20','','','','inherit','open','closed','','jamie-img_7372-1300px','','','2022-06-29 04:09:53','2022-06-29 04:09:53','',0,'https://flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg',0,'attachment','image/jpeg',0),(1149,1,'2021-12-20 03:20:10','2021-12-20 03:20:10','','','','inherit','open','closed','','adrian-img_7328-1300px','','','2022-06-29 04:09:50','2022-06-29 04:09:50','',0,'https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg',0,'attachment','image/jpeg',0),(1174,1,'2022-03-24 14:19:07','2022-03-24 14:19:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-03-24 14:19:07','2022-03-24 14:19:07','',9,'https://flaphotography.com/?p=1174',0,'revision','',0),(1150,1,'2021-12-20 03:20:43','2021-12-20 03:20:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.11.2\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.14.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.9.7\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"167deg\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\" title_text=\"Monique-smile_MG_9348-2000PX-FQ2\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\" title_text=\"Meranda_MG_9390-2500PX-RNEW-CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.14.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2021-12-20 03:20:43','2021-12-20 03:20:43','',9,'https://flaphotography.com/?p=1150',0,'revision','',0),(1160,1,'2022-03-24 02:57:47','2022-03-24 02:57:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-24 02:57:47','2022-03-24 02:57:47','',61,'https://flaphotography.com/?p=1160',0,'revision','',0),(1154,1,'2021-12-21 22:28:40','2021-12-21 22:28:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.14.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\" title_text=\"_MG_8545-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_right=\"#cecece\" border_width_right=\"1px\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.14.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" border_color_left=\"#c9c9c9\" border_width_left=\"1px\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.14.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.0.9\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.9.7\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.13.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.9.7\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.9.7\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.9.7\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.0.9\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.9.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2021-12-21 22:28:40','2021-12-21 22:28:40','',61,'https://flaphotography.com/?p=1154',0,'revision','',0),(1774,1,'2022-09-16 20:16:20','2022-09-16 20:16:20','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n.cu-form .et_pb_contact_field_dov_1133_13 label{\n display: block !important;\n}\n\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-09-16 20:16:20','2022-09-16 20:16:20','',197,'https://flaphotography.com/?p=1774',0,'revision','',0),(1163,1,'2022-03-24 12:59:37','2022-03-24 12:59:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"]<h1><a href=\"https://flaphotography.com/promotion/\">15% OFF - ENDS April 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 12:59:37','2022-03-24 12:59:37','',85,'https://flaphotography.com/?p=1163',0,'revision','',0),(1164,1,'2022-03-24 12:59:51','2022-03-24 12:59:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS April 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 12:59:51','2022-03-24 12:59:51','',85,'https://flaphotography.com/?p=1164',0,'revision','',0),(1243,1,'2022-03-25 01:03:06','2022-03-25 01:03:06','','20 OFF-PROMO-NEW-as of MAR 24-FINAL','','inherit','open','closed','','20-off-promo-new-as-of-mar-24-final','','','2022-03-25 01:03:06','2022-03-25 01:03:06','',0,'https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4',0,'attachment','video/mp4',0),(1185,1,'2022-03-24 23:11:19','2022-03-24 23:11:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:11:19','2022-03-24 23:11:19','',85,'https://flaphotography.com/?p=1185',0,'revision','',0),(1167,1,'2022-03-24 14:07:54','2022-03-24 14:07:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 14:07:54','2022-03-24 14:07:54','',85,'https://flaphotography.com/?p=1167',0,'revision','',0),(1172,1,'2022-03-24 14:14:21','2022-03-24 14:14:21','','','','inherit','open','closed','','rachel-boss_8544-blue-strong2-900px','','','2022-06-29 04:09:48','2022-06-29 04:09:48','',0,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg',0,'attachment','image/jpeg',0),(1173,1,'2022-03-24 14:17:48','2022-03-24 14:17:48','','','','inherit','open','closed','','rachel-glance-wide-red-pur-8535-900px','','','2022-06-29 04:09:45','2022-06-29 04:09:45','',0,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg',0,'attachment','image/jpeg',0),(1181,1,'2022-03-24 23:08:08','2022-03-24 23:08:08','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-03-24 23:08:08','2022-03-24 23:08:08','',367,'https://flaphotography.com/?p=1181',0,'revision','',0),(1169,1,'2022-03-24 14:08:07','2022-03-24 14:08:07','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-03-24 14:08:07','2022-03-24 14:08:07','',367,'https://flaphotography.com/?p=1169',0,'revision','',0),(1176,1,'2022-03-24 23:04:08','2022-03-24 23:04:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:04:08','2022-03-24 23:04:08','',85,'https://flaphotography.com/?p=1176',0,'revision','',0),(1170,1,'2022-03-24 14:08:11','2022-03-24 14:08:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 14:08:11','2022-03-24 14:08:11','',85,'https://flaphotography.com/?p=1170',0,'revision','',0),(1177,1,'2022-03-24 23:06:43','2022-03-24 23:06:43','','','','inherit','open','closed','','turmeric-plant-img_5902-900px2','','','2022-03-25 00:08:27','2022-03-25 00:08:27','',0,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg',0,'attachment','image/jpeg',0),(1179,1,'2022-03-24 23:07:17','2022-03-24 23:07:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:07:17','2022-03-24 23:07:17','',85,'https://flaphotography.com/?p=1179',0,'revision','',0),(1178,1,'2022-03-24 23:06:54','2022-03-24 23:06:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Couples & Family Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:06:54','2022-03-24 23:06:54','',85,'https://flaphotography.com/?p=1178',0,'revision','',0),(1184,1,'2022-03-24 23:09:45','2022-03-24 23:09:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:09:45','2022-03-24 23:09:45','',85,'https://flaphotography.com/?p=1184',0,'revision','',0),(1182,1,'2022-03-24 23:08:11','2022-03-24 23:08:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-24 23:08:11','2022-03-24 23:08:11','',85,'https://flaphotography.com/?p=1182',0,'revision','',0),(1186,1,'2022-03-24 23:14:58','2022-03-24 23:14:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Production section','','publish','closed','closed','','production-section','','','2022-03-24 23:14:58','2022-03-24 23:14:58','',0,'https://flaphotography.com/et_pb_layout/production-section/',0,'et_pb_layout','',0),(1187,1,'2022-03-24 23:15:19','2022-03-24 23:15:19','[et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" template_type=\"module\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header]','Production header','','publish','closed','closed','','production-header','','','2022-03-24 23:15:19','2022-03-24 23:15:19','',0,'https://flaphotography.com/et_pb_layout/production-header/',0,'et_pb_layout','',0),(1188,1,'2022-03-24 23:17:34','2022-03-24 23:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>SKIN CARE CLIENT</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.16\" _module_preset=\"default\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>APPAREL CLIENT</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1600,1601,1602,1603\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','publish','closed','closed','','products-photography','','','2022-07-21 14:32:01','2022-07-21 14:32:01','',0,'https://flaphotography.com/?page_id=1188',0,'page','',0),(1189,1,'2022-03-24 23:17:20','2022-03-24 23:17:20','','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:17:20','2022-03-24 23:17:20','',1188,'https://flaphotography.com/?p=1189',0,'revision','',0),(1190,1,'2022-03-24 23:17:34','2022-03-24 23:17:34','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\"][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:17:34','2022-03-24 23:17:34','',1188,'https://flaphotography.com/?p=1190',0,'revision','',0),(1193,1,'2022-03-24 23:20:44','2022-03-24 23:20:44','[et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.15\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" template_type=\"module\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header]','Header product','','publish','closed','closed','','header-product','','','2022-03-24 23:20:44','2022-03-24 23:20:44','',0,'https://flaphotography.com/et_pb_layout/header-product/',0,'et_pb_layout','',0),(1195,1,'2022-03-24 23:24:08','2022-03-24 23:24:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"25px||26px|||\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:24:08','2022-03-24 23:24:08','',1188,'https://flaphotography.com/?p=1195',0,'revision','',0),(1192,1,'2022-03-24 23:19:19','2022-03-24 23:19:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"234\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.15\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" global_module=\"367\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:19:19','2022-03-24 23:19:19','',1188,'https://flaphotography.com/?p=1192',0,'revision','',0),(1209,1,'2022-03-24 23:38:54','2022-03-24 23:38:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"40px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:38:54','2022-03-24 23:38:54','',1188,'https://flaphotography.com/?p=1209',0,'revision','',0),(1196,1,'2022-03-24 23:31:07','2022-03-24 23:31:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"25px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"40px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:31:07','2022-03-24 23:31:07','',1188,'https://flaphotography.com/?p=1196',0,'revision','',0),(1197,1,'2022-03-24 23:32:22','2022-03-24 23:32:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"40px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Colored brown.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:32:22','2022-03-24 23:32:22','',1188,'https://flaphotography.com/?p=1197',0,'revision','',0),(1198,1,'2022-03-24 23:33:24','2022-03-24 23:33:24','','','','inherit','open','closed','','aloe-vera-soap-plant_5904-900px1','','','2022-07-19 16:31:21','2022-07-19 16:31:21','',0,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg',0,'attachment','image/jpeg',0),(1199,1,'2022-03-24 23:33:29','2022-03-24 23:33:29','','','','inherit','open','closed','','black-soap-flour_5907-900px4','','','2022-03-25 00:07:53','2022-03-25 00:07:53','',0,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg',0,'attachment','image/jpeg',0),(1200,1,'2022-03-24 23:33:31','2022-03-24 23:33:31','','','','inherit','open','closed','','foaming-sugar-scrab-img_5918-900px3','','','2022-03-25 00:08:20','2022-03-25 00:08:20','',0,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg',0,'attachment','image/jpeg',0),(1201,1,'2022-03-24 23:33:34','2022-03-24 23:33:34','','','','inherit','open','closed','','goats-milk-img_5897-900px2','','','2022-03-25 00:08:17','2022-03-25 00:08:17','',0,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg',0,'attachment','image/jpeg',0),(1202,1,'2022-03-24 23:33:36','2022-03-24 23:33:36','','','','inherit','open','closed','','hard-bizwax-lotion-closed-5886-900px3','','','2022-03-25 00:08:13','2022-03-25 00:08:13','',0,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg',0,'attachment','image/jpeg',0),(1203,1,'2022-03-24 23:33:38','2022-03-24 23:33:38','','','','inherit','open','closed','','hard-bizwax-lotion-open-5886-900px5','','','2022-03-25 00:08:10','2022-03-25 00:08:10','',0,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg',0,'attachment','image/jpeg',0),(1204,1,'2022-03-24 23:33:41','2022-03-24 23:33:41','','','','inherit','open','closed','','levinder-buds-plant_5898-900px2','','','2022-03-25 00:08:07','2022-03-25 00:08:07','',0,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg',0,'attachment','image/jpeg',0),(1205,1,'2022-03-24 23:33:43','2022-03-24 23:33:43','','','','inherit','open','closed','','triple-body-butter-img_5919-900px3','','','2022-03-25 00:08:04','2022-03-25 00:08:04','',0,'https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg',0,'attachment','image/jpeg',0),(1206,1,'2022-03-24 23:33:46','2022-03-24 23:33:46','','','','inherit','open','closed','','turmeric-img_5902-900px','','','2022-03-25 00:08:01','2022-03-25 00:08:01','',0,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg',0,'attachment','image/jpeg',0),(1213,1,'2022-03-24 23:47:22','2022-03-24 23:47:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"77px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:47:22','2022-03-24 23:47:22','',1188,'https://flaphotography.com/?p=1213',0,'revision','',0),(1210,1,'2022-03-24 23:40:41','2022-03-24 23:40:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"77px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored red.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"TRIPLE-BODY-BUTTER-IMG_5919-900PX3\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-New Backg.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:40:41','2022-03-24 23:40:41','',1188,'https://flaphotography.com/?p=1210',0,'revision','',0),(1212,1,'2022-03-24 23:47:13','2022-03-24 23:47:13','','','','inherit','open','closed','','shea-butter-soap-img_5910-900px2','','','2022-03-25 00:07:57','2022-03-25 00:07:57','',0,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg',0,'attachment','image/jpeg',0),(1215,1,'2022-03-24 23:48:08','2022-03-24 23:48:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"51px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"77px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:48:08','2022-03-24 23:48:08','',1188,'https://flaphotography.com/?p=1215',0,'revision','',0),(1217,1,'2022-03-24 23:56:07','2022-03-24 23:56:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"10px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"77px||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"||127px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin_tablet=\"||50px||false|false\" custom_margin=\"||8px||false|false\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"16px\" text_font_size_tablet=\"18px\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:56:07','2022-03-24 23:56:07','',1188,'https://flaphotography.com/?p=1217',0,'revision','',0),(1220,1,'2022-03-24 23:57:49','2022-03-24 23:57:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||4px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||4px|||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"10px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"||127px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin_tablet=\"||50px||false|false\" custom_margin=\"||8px||false|false\" custom_padding=\"12px|||||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"16px\" text_font_size_tablet=\"18px\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:57:49','2022-03-24 23:57:49','',1188,'https://flaphotography.com/?p=1220',0,'revision','',0),(1219,1,'2022-03-24 23:57:31','2022-03-24 23:57:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||26px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||4px|||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"10px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"||127px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin_tablet=\"||50px||false|false\" custom_margin=\"||8px||false|false\" custom_padding=\"12px|||||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"16px\" text_font_size_tablet=\"18px\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-24 23:57:31','2022-03-24 23:57:31','',1188,'https://flaphotography.com/?p=1219',0,'revision','',0),(1221,1,'2022-03-25 00:01:52','2022-03-25 00:01:52','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-03-25 00:01:52','2022-03-25 00:01:52','',367,'https://flaphotography.com/?p=1221',0,'revision','',0),(1222,1,'2022-03-25 00:01:55','2022-03-25 00:01:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"0px||4px|||\" custom_margin=\"||||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||4px|||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font_size_phone=\"18px\" text_font_size_tablet=\"20px\" text_line_height=\"1.5em\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_padding=\"10px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||||false|false\" custom_margin_tablet=\"||||false|false\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"||127px||false|false\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin_tablet=\"||50px||false|false\" custom_margin=\"||8px||false|false\" custom_padding=\"12px|||||\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"16px\" text_font_size_tablet=\"18px\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" use_custom_gutter=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" sticky_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#000000\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"1\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" sticky_enabled=\"0\" border_color_all=\"#000000\" border_width_all=\"1px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:01:55','2022-03-25 00:01:55','',1188,'https://flaphotography.com/?p=1222',0,'revision','',0),(1223,1,'2022-03-25 00:08:58','2022-03-25 00:08:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||8px||false|false\" custom_margin_tablet=\"||50px||false|false\" custom_margin_phone=\"||127px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_gallery _builder_version=\"4.15.1\" _module_preset=\"default\" gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:08:58','2022-03-25 00:08:58','',1188,'https://flaphotography.com/?p=1223',0,'revision','',0),(1224,1,'2022-03-25 00:12:44','2022-03-25 00:12:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10px||1px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||8px||false|false\" custom_margin_tablet=\"||50px||false|false\" custom_margin_phone=\"||127px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Products Section-IMG MD','','publish','closed','closed','','products-section-img-md','','','2022-03-25 00:12:44','2022-03-25 00:12:44','',0,'https://flaphotography.com/et_pb_layout/products-section-img-md/',0,'et_pb_layout','',0);
INSERT INTO `wp1j_posts` VALUES (1226,1,'2022-03-25 00:13:23','2022-03-25 00:13:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||8px||false|false\" custom_margin_tablet=\"||50px||false|false\" custom_margin_phone=\"||127px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" use_custom_gutter=\"on\" gutter_width=\"1\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_gallery _builder_version=\"4.15.1\" _module_preset=\"default\" gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" hover_enabled=\"0\" sticky_enabled=\"0\" border_color_all_image=\"#000000\" border_width_all_image=\"1px\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:13:23','2022-03-25 00:13:23','',1188,'https://flaphotography.com/?p=1226',0,'revision','',0),(1225,1,'2022-03-25 00:12:50','2022-03-25 00:12:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||8px||false|false\" custom_margin_tablet=\"||50px||false|false\" custom_margin_phone=\"||127px||false|false\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\" title_text=\"ALOE-VERA-SOAP-Plant_5904-900PX1\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" title_text=\"TURMERIC-Plant-IMG_5902-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\" title_text=\"HARD-BIZWAX-LOTION-OPEN-5886-900px5\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\" title_text=\"BLACK-SOAP-Flour_5907-900PX4\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15.1\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\" title_text=\"FOAMING-SUGAR-SCRAB-IMG_5918-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\" title_text=\"GOATS-MILK-IMG_5897-900PX2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\" title_text=\"Shea-Butter-Soap-IMG_5910-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\" title_text=\"LEVINDER-BUDS-Plant_5898-900px2\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" use_custom_gutter=\"on\" gutter_width=\"1\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.15.1\" _module_preset=\"default\" type=\"4_4\"][et_pb_gallery _builder_version=\"4.15.1\" _module_preset=\"default\" gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" hover_enabled=\"0\" sticky_enabled=\"0\" border_color_all_image=\"#000000\" border_width_all_image=\"1px\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:12:50','2022-03-25 00:12:50','',1188,'https://flaphotography.com/?p=1225',0,'revision','',0),(1227,1,'2022-03-25 00:15:08','2022-03-25 00:15:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" max_width=\"1268px\" max_width_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_padding=\"7px|||||\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:15:08','2022-03-25 00:15:08','',1188,'https://flaphotography.com/?p=1227',0,'revision','',0),(1247,1,'2022-03-25 01:05:45','2022-03-25 01:05:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>SKIN CARE - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.15.1\" _module_preset=\"default\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 01:05:45','2022-03-25 01:05:45','',1188,'https://flaphotography.com/?p=1247',0,'revision','',0),(1228,1,'2022-03-25 00:17:01','2022-03-25 00:17:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" max_width=\"1268px\" max_width_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_padding=\"7px|||||\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Products Photography','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:17:01','2022-03-25 00:17:01','',1188,'https://flaphotography.com/?p=1228',0,'revision','',0),(1229,1,'2022-03-25 00:18:34','2022-03-25 00:18:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-25 00:18:34','2022-03-25 00:18:34','',85,'https://flaphotography.com/?p=1229',0,'revision','',0),(1230,1,'2022-03-25 00:25:49','2022-03-25 00:24:31',' ','','','publish','closed','closed','','products-photography','','','2022-03-25 00:25:49','2022-03-25 00:25:49','',0,'https://flaphotography.com/?p=1230',5,'nav_menu_item','',0),(1231,1,'2022-03-25 00:23:44','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2022-03-25 00:23:44','0000-00-00 00:00:00','',0,'https://flaphotography.com/?p=1231',1,'nav_menu_item','',0),(1232,1,'2022-03-25 00:25:06','2022-03-25 00:25:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SOAP BARS - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" max_width=\"1268px\" max_width_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_padding=\"7px|||||\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 00:25:06','2022-03-25 00:25:06','',1188,'https://flaphotography.com/?p=1232',0,'revision','',0),(1234,1,'2022-03-25 00:28:19','2022-03-25 00:28:19','[et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row]','IMAGES-TEMP','','publish','closed','closed','','images-temp','','','2022-03-25 00:28:19','2022-03-25 00:28:19','',0,'https://flaphotography.com/et_pb_layout/images-temp/',0,'et_pb_layout','',0),(1442,1,'2022-07-01 21:24:03','2022-07-01 21:24:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:24:03','2022-07-01 21:24:03','',61,'https://flaphotography.com/?p=1442',0,'revision','',0),(1397,1,'2022-07-01 04:03:45','2022-07-01 04:03:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 04:03:45','2022-07-01 04:03:45','',61,'https://flaphotography.com/?p=1397',0,'revision','',0),(1235,1,'2022-03-25 00:29:41','2022-03-25 00:29:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-25 00:29:41','2022-03-25 00:29:41','',61,'https://flaphotography.com/?p=1235',0,'revision','',0),(1236,1,'2022-03-25 00:31:06','2022-03-25 00:31:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-25 00:31:06','2022-03-25 00:31:06','',61,'https://flaphotography.com/?p=1236',0,'revision','',0),(1240,1,'2022-03-25 00:52:03','2022-03-25 00:52:03','','','','inherit','open','closed','','ash-gaze-img_0003_3-900px3','','','2022-07-12 15:32:17','2022-07-12 15:32:17','',0,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg',0,'attachment','image/jpeg',0),(1239,1,'2022-03-25 00:43:20','2022-03-25 00:43:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-25 00:43:20','2022-03-25 00:43:20','',61,'https://flaphotography.com/?p=1239',0,'revision','',0),(1238,1,'2022-03-25 00:33:38','2022-03-25 00:33:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.15.1\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" _builder_version=\"4.15.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-25 00:33:38','2022-03-25 00:33:38','',61,'https://flaphotography.com/?p=1238',0,'revision','',0),(1244,1,'2022-03-25 01:03:29','2022-03-25 01:03:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-25 01:03:29','2022-03-25 01:03:29','',85,'https://flaphotography.com/?p=1244',0,'revision','',0),(1316,1,'2022-06-29 03:47:46','2022-06-29 03:47:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-06-29 03:47:46','2022-06-29 03:47:46','',367,'https://flaphotography.com/?p=1316',0,'revision','',0),(1245,1,'2022-03-25 01:03:37','2022-03-25 01:03:37','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-03-25 01:03:37','2022-03-25 01:03:37','',367,'https://flaphotography.com/?p=1245',0,'revision','',0),(1330,1,'2022-07-01 01:28:05','2022-07-01 01:28:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"BEST CAPTURE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"39px\" header_letter_spacing=\"14px\"]<p>Your content goes here. Edit or remove this </p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:28:05','2022-07-01 01:28:05','',85,'https://flaphotography.com/?p=1330',0,'revision','',0),(1246,1,'2022-03-25 01:03:39','2022-03-25 01:03:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.15\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_end=\"#000000\" background_color_gradient_direction=\"154deg\" background_color_gradient_start_position=\"41%\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.15\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.15\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.15\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.15\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.15\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.15\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.15\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.13.0\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"20 OFF-PROMO-NEW-as of MAR 24-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-03-25 01:03:39','2022-03-25 01:03:39','',85,'https://flaphotography.com/?p=1246',0,'revision','',0),(1242,1,'2022-03-25 00:53:08','2022-03-25 00:53:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px||34px|||\" bottom_divider_style=\"curve\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15.1\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.15\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15.1\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.15.1\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.15\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.9.7\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_color_gradient_direction=\"326deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.14.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.15\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.15\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.9.7\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-03-25 00:53:08','2022-03-25 00:53:08','',61,'https://flaphotography.com/?p=1242',0,'revision','',0),(1604,1,'2022-07-19 16:39:02','2022-07-19 16:39:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SKIN CARE - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1600,1601,1602,1603\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-07-19 16:39:02','2022-07-19 16:39:02','',1188,'https://flaphotography.com/?p=1604',0,'revision','',0),(1248,1,'2022-03-25 01:43:25','2022-03-25 01:43:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.15\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15.1\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>SKIN CARE - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15.1\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.15.1\" _module_preset=\"default\" hover_enabled=\"0\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" pagination_text_color_last_edited=\"on|phone\" sticky_enabled=\"0\" pagination_text_color_phone=\"#000000\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.15\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.15.1\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.13.0\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.15\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.9.7\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.9.7\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.14.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.15.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-03-25 01:43:25','2022-03-25 01:43:25','',1188,'https://flaphotography.com/?p=1248',0,'revision','',0),(1463,1,'2022-07-02 15:23:45','2022-07-02 15:23:45','','KCJ-Photography-BLA-Logo-300PX','','inherit','open','closed','','kcj-photography-bla-logo-300px','','','2022-07-02 15:23:45','2022-07-02 15:23:45','',0,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',0,'attachment','image/png',0),(1255,1,'2022-06-26 20:55:46','2022-06-26 20:55:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300pxJun26\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-06-26 20:55:46','2022-06-26 20:55:46','',234,'https://flaphotography.com/?p=1255',0,'revision','',0),(1256,1,'2022-06-26 20:55:50','2022-06-26 20:55:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300pxJun26\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-06-26 20:55:50','2022-06-26 20:55:50','',85,'https://flaphotography.com/?p=1256',0,'revision','',0),(1275,1,'2022-06-29 00:55:38','2022-06-29 00:55:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-06-29 00:55:38','2022-06-29 00:55:38','',234,'https://flaphotography.com/?p=1275',0,'revision','',0),(1252,1,'2022-06-26 03:40:37','2022-06-26 03:40:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-NW-BLA-Logo-300pxJun25.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-NW-BLA-Logo-300pxJun25\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-06-26 03:40:37','2022-06-26 03:40:37','',234,'https://flaphotography.com/?p=1252',0,'revision','',0),(1265,1,'2022-06-27 16:22:24','2022-06-27 16:22:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" sticky_enabled=\"0\"]<h1>PROMOTIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-06-27 16:22:24','2022-06-27 16:22:24','',85,'https://flaphotography.com/?p=1265',0,'revision','',0),(1253,1,'2022-06-26 03:40:42','2022-06-26 03:40:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-NW-BLA-Logo-300pxJun25.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-NW-BLA-Logo-300pxJun25\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1><a href=\"https://flaphotography.com/promotion/\">20% OFF - ENDS APRIL 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-06-26 03:40:42','2022-06-26 03:40:42','',85,'https://flaphotography.com/?p=1253',0,'revision','',0),(1261,1,'2022-06-26 23:31:22','2022-06-26 23:31:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][/et_pb_section]','HEADER-CORPORATE-TEMP','','publish','closed','closed','','header-corporate-temp','','','2022-06-26 23:31:22','2022-06-26 23:31:22','',0,'https://flaphotography.com/et_pb_layout/header-corporate-temp/',0,'et_pb_layout','',0),(1262,1,'2022-06-26 23:31:30','2022-06-26 23:31:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(143,143,143,0.39)\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-26 23:31:30','2022-06-26 23:31:30','',9,'https://flaphotography.com/?p=1262',0,'revision','',0),(1260,1,'2022-06-26 23:30:36','2022-06-26 23:30:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(143,143,143,0.39)\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-26 23:30:36','2022-06-26 23:30:36','',9,'https://flaphotography.com/?p=1260',0,'revision','',0),(1258,1,'2022-06-26 23:29:03','2022-06-26 23:29:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"22px||30px|||\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.6)\" custom_padding=\"32px|||||\" bottom_divider_style=\"arrow3\" bottom_divider_color=\"#000000\" bottom_divider_height=\"54px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $168 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $312 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$620 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $496 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-26 23:29:03','2022-06-26 23:29:03','',9,'https://flaphotography.com/?p=1258',0,'revision','',0),(1269,1,'2022-06-27 16:38:47','2022-06-27 16:38:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$359 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-27 16:38:47','2022-06-27 16:38:47','',9,'https://flaphotography.com/?p=1269',0,'revision','',0),(1266,1,'2022-06-27 16:24:44','2022-06-27 16:24:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$390 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-27 16:24:44','2022-06-27 16:24:44','',9,'https://flaphotography.com/?p=1266',0,'revision','',0),(1267,1,'2022-06-27 16:26:20','2022-06-27 16:26:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-06-27 16:26:20','2022-06-27 16:26:20','',61,'https://flaphotography.com/?p=1267',0,'revision','',0),(1264,1,'2022-06-26 23:36:36','2022-06-26 23:36:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"34px||27px|||\" background_color=\"rgba(143,143,143,0.15)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $260 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$600 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>New $480 (20% Off)</p>[/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-06-26 23:36:36','2022-06-26 23:36:36','',61,'https://flaphotography.com/?p=1264',0,'revision','',0),(1268,1,'2022-06-27 16:27:29','2022-06-27 16:27:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun26.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>\n<p>Modeling, product, &amp; fashion</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-06-27 16:27:29','2022-06-27 16:27:29','',61,'https://flaphotography.com/?p=1268',0,'revision','',0),(1272,1,'2022-06-29 00:45:55','2022-06-29 00:45:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300pxJun28-REV\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-06-29 00:45:55','2022-06-29 00:45:55','',234,'https://flaphotography.com/?p=1272',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1329,1,'2022-07-01 01:23:35','2022-07-01 01:23:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:23:35','2022-07-01 01:23:35','',85,'https://flaphotography.com/?p=1329',0,'revision','',0),(1273,1,'2022-06-29 00:48:21','2022-06-29 00:48:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300pxJun28-REV\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\"]<h1>PROMOTIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-06-29 00:48:21','2022-06-29 00:48:21','',85,'https://flaphotography.com/?p=1273',0,'revision','',0),(1277,1,'2022-06-29 00:58:59','2022-06-29 00:58:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"24px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 00:58:59','2022-06-29 00:58:59','',9,'https://flaphotography.com/?p=1277',0,'revision','',0),(1280,1,'2022-06-29 01:02:24','2022-06-29 01:02:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"16px||12px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"24px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 01:02:24','2022-06-29 01:02:24','',9,'https://flaphotography.com/?p=1280',0,'revision','',0),(1279,1,'2022-06-29 01:01:12','2022-06-29 01:01:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"16px||12px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"24px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 01:01:12','2022-06-29 01:01:12','',9,'https://flaphotography.com/?p=1279',0,'revision','',0),(1281,1,'2022-06-29 01:03:02','2022-06-29 01:03:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"16px||12px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"22px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 01:03:02','2022-06-29 01:03:02','',9,'https://flaphotography.com/?p=1281',0,'revision','',0),(1282,1,'2022-06-29 01:05:02','2022-06-29 01:05:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"16px||12px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"22px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 01:05:02','2022-06-29 01:05:02','',9,'https://flaphotography.com/?p=1282',0,'revision','',0),(1290,1,'2022-06-29 02:26:14','2022-06-29 02:26:14','','','','inherit','open','closed','','cnj-vision-img_4553-1500pxn1','','','2022-07-18 00:17:09','2022-07-18 00:17:09','',0,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg',0,'attachment','image/jpeg',0),(1292,1,'2022-06-29 02:27:27','2022-06-29 02:27:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXN1.jpg\" _builder_version=\"4.17.4\" _module_preset=\"default\" title_text=\"IMG_4526-1-LOOK-THE-FINAL-1500PXN1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\" _builder_version=\"4.17.4\" _module_preset=\"default\" title_text=\"CNJ-VISION-IMG_4553-1500pXN1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 02:27:27','2022-06-29 02:27:27','',9,'https://flaphotography.com/?p=1292',0,'revision','',0),(1285,1,'2022-06-29 01:11:44','2022-06-29 01:11:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"16px||12px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" text_font_size=\"22px\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial|300|||||||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"20px\" text_font_size_tablet=\"22px\" text_letter_spacing=\"3px\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" title_text=\"IMG_4526-1-LOOK-FINAL-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500PX.jpg\" _builder_version=\"4.17.4\" _module_preset=\"default\" title_text=\"CNJ-VISION-IMG_4553-1500PX\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 01:11:44','2022-06-29 01:11:44','',9,'https://flaphotography.com/?p=1285',0,'revision','',0),(1302,1,'2022-06-29 03:17:38','2022-06-29 03:17:38','','','','inherit','open','closed','','img_4526-1-look-the-final-1500pxc2','','','2022-06-29 04:09:33','2022-06-29 04:09:33','',0,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg',0,'attachment','image/jpeg',0),(1293,1,'2022-06-29 02:45:17','2022-06-29 02:45:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXN1.jpg\" _builder_version=\"4.17.4\" _module_preset=\"default\" title_text=\"IMG_4526-1-LOOK-THE-FINAL-1500PXN1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\" _builder_version=\"4.17.4\" _module_preset=\"default\" title_text=\"CNJ-VISION-IMG_4553-1500pXN1\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\"][et_pb_gallery _builder_version=\"4.17.4\" _module_preset=\"default\" gallery_ids=\"1291,1290\" hover_enabled=\"0\" sticky_enabled=\"0\" min_height_last_edited=\"off|desktop\" width=\"100%\" min_height=\"727px\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 02:45:17','2022-06-29 02:45:17','',9,'https://flaphotography.com/?p=1293',0,'revision','',0),(1298,1,'2022-06-29 03:00:45','2022-06-29 03:00:45','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-06-29 03:00:45','2022-06-29 03:00:45','',197,'https://flaphotography.com/?p=1298',0,'revision','',0),(1295,1,'2022-06-29 02:48:15','2022-06-29 02:48:15','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n/*image gallery item aspect ratio portrait 9:16*/\n\n.pa-image-gallery-9-16 .et_pb_gallery_image {\n  padding-top: 177.77%;\n  display: block;\n}\n\n.pa-image-gallery-9-16 .et_pb_gallery_item img {\n  position: absolute;\n  height: 100%;\n  width: 100%;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  object-fit: cover;\n}','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-06-29 02:48:15','2022-06-29 02:48:15','',197,'https://flaphotography.com/?p=1295',0,'revision','',0),(1296,1,'2022-06-29 02:49:36','2022-06-29 02:49:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXN1.jpg\" title_text=\"IMG_4526-1-LOOK-THE-FINAL-1500PXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\" title_text=\"CNJ-VISION-IMG_4553-1500pXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1291,1290\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" orientation=\"portrait\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 02:49:36','2022-06-29 02:49:36','',9,'https://flaphotography.com/?p=1296',0,'revision','',0),(1620,1,'2022-07-30 01:09:45','2022-07-30 01:09:45','','','','inherit','open','closed','','idras-bench-lean-img_1484-1500px','','','2022-07-30 01:10:00','2022-07-30 01:10:00','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg',0,'attachment','image/jpeg',0),(1621,1,'2022-07-30 01:10:25','2022-07-30 01:10:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-30 01:10:25','2022-07-30 01:10:25','',9,'https://flaphotography.com/?p=1621',0,'revision','',0),(1304,1,'2022-06-29 03:19:02','2022-06-29 03:19:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302\" orientation=\"portrait\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"pa-image-gallery-2-3 \" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:19:02','2022-06-29 03:19:02','',9,'https://flaphotography.com/?p=1304',0,'revision','',0),(1299,1,'2022-06-29 03:08:41','2022-06-29 03:08:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXN1.jpg\" title_text=\"IMG_4526-1-LOOK-THE-FINAL-1500PXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\" title_text=\"CNJ-VISION-IMG_4553-1500pXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1291,1290\" orientation=\"portrait\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"pa-image-gallery-2-3 \" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:08:41','2022-06-29 03:08:41','',9,'https://flaphotography.com/?p=1299',0,'revision','',0),(1305,1,'2022-06-29 03:25:26','2022-06-29 03:25:26','','','','inherit','open','closed','','img_4544-1-cnj-its-time-1500pxc1','','','2022-06-29 04:09:29','2022-06-29 04:09:29','',0,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg',0,'attachment','image/jpeg',0),(1306,1,'2022-06-29 03:26:06','2022-06-29 03:26:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"pa-image-gallery-2-3 \" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:26:06','2022-06-29 03:26:06','',9,'https://flaphotography.com/?p=1306',0,'revision','',0),(1303,1,'2022-06-29 03:18:25','2022-06-29 03:18:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-2000PXCP-scaled.jpg\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2000PXCP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXN1.jpg\" title_text=\"IMG_4526-1-LOOK-THE-FINAL-1500PXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\" title_text=\"CNJ-VISION-IMG_4553-1500pXN1\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302\" orientation=\"portrait\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"pa-image-gallery-2-3 \" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:18:25','2022-06-29 03:18:25','',9,'https://flaphotography.com/?p=1303',0,'revision','',0),(1308,1,'2022-06-29 03:27:28','2022-06-29 03:27:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:27:28','2022-06-29 03:27:28','',9,'https://flaphotography.com/?p=1308',0,'revision','',0),(1307,1,'2022-06-29 03:26:30','2022-06-29 03:26:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" use_custom_gutter=\"on\" gutter_width=\"2\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height=\"727px\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"pa-image-gallery-2-3 \" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:26:30','2022-06-29 03:26:30','',9,'https://flaphotography.com/?p=1307',0,'revision','',0),(1312,1,'2022-06-29 03:41:49','2022-06-29 03:41:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:41:49','2022-06-29 03:41:49','',9,'https://flaphotography.com/?p=1312',0,'revision','',0),(1311,1,'2022-06-29 03:39:07','2022-06-29 03:39:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:39:07','2022-06-29 03:39:07','',9,'https://flaphotography.com/?p=1311',0,'revision','',0),(1310,1,'2022-06-29 03:36:28','2022-06-29 03:36:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-3-4 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" title_text=\"FAITH-JOY-6885-1500PX-CROP8-(2)\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\" title_text=\"Faith-Happiness-IMG_6921-2000PX-S\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:36:28','2022-06-29 03:36:28','',9,'https://flaphotography.com/?p=1310',0,'revision','',0),(1313,1,'2022-06-29 03:44:19','2022-06-29 03:44:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>CORPORATE</h1>\n<p>Business, Artists, &amp; Musicians.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:44:19','2022-06-29 03:44:19','',9,'https://flaphotography.com/?p=1313',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1314,1,'2022-06-29 03:46:50','2022-06-29 03:46:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.39)\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:46:50','2022-06-29 03:46:50','',9,'https://flaphotography.com/?p=1314',0,'revision','',0),(1318,1,'2022-06-29 03:51:09','2022-06-29 03:51:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CORPORATE </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:51:09','2022-06-29 03:51:09','',9,'https://flaphotography.com/?p=1318',0,'revision','',0),(1315,1,'2022-06-29 03:47:43','2022-06-29 03:47:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\" title_text=\"Francine-Work-Serious-IMG_6446-6000PX2-CROP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\" title_text=\"Francine-Boss-IMG_6435-6000PX-LIGHTER (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\" title_text=\"Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-9px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\" title_text=\"IMG_4142-PR-Suite-2000PX-FQ2-CP\" show_in_lightbox=\"on\" src_last_edited=\"off|tablet\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:47:43','2022-06-29 03:47:43','',9,'https://flaphotography.com/?p=1315',0,'revision','',0),(1323,1,'2022-06-29 04:03:42','2022-06-29 04:03:42','','','','inherit','open','closed','','rachel-look-img_8533-800px','','','2022-07-12 15:38:52','2022-07-12 15:38:52','',0,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg',0,'attachment','image/jpeg',0),(1324,1,'2022-06-29 04:04:29','2022-06-29 04:04:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CORPORATE </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173,1323\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 04:04:29','2022-06-29 04:04:29','',9,'https://flaphotography.com/?p=1324',0,'revision','',0),(1322,1,'2022-06-29 03:59:40','2022-06-29 03:59:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CORPORATE </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:59:40','2022-06-29 03:59:40','',9,'https://flaphotography.com/?p=1322',0,'revision','',0),(1320,1,'2022-06-29 03:53:35','2022-06-29 03:53:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CORPORATE </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|32px|auto|false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||8px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" title_text=\"Lucie_9282-Dark-Grey-2500PX-FREQ-CP\" show_in_lightbox=\"on\" src_tablet=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\" src_last_edited=\"on|phone\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG2-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\" title_text=\"RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 03:53:35','2022-06-29 03:53:35','',9,'https://flaphotography.com/?p=1320',0,'revision','',0),(1325,1,'2022-06-29 04:06:44','2022-06-29 04:06:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_title_and_caption=\"off\" show_pagination=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_font_last_edited=\"on|phone\" text_font_phone=\"Arial||||||||\" text_font_tablet=\"Arial|300|||||||\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1173,1323\" orientation=\"portrait\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_pagination=\"off\" show_title_and_caption=\"off\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-06-29 04:06:44','2022-06-29 04:06:44','',9,'https://flaphotography.com/?p=1325',0,'revision','',0),(1549,1,'2022-07-06 00:32:04','2022-07-06 00:32:04','','','','inherit','open','closed','','img_4544-1-cnj-its-time-2500pxcp','','','2022-07-12 15:25:59','2022-07-12 15:25:59','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg',0,'attachment','image/jpeg',0),(1331,1,'2022-07-01 01:28:50','2022-07-01 01:28:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"BEST CAPTURE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"39px\" header_letter_spacing=\"14px\" body_font=\"Open Sans||||||||\" body_font_size=\"20px\"]<p>Your content goes here. Edit or remove this </p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:28:50','2022-07-01 01:28:50','',85,'https://flaphotography.com/?p=1331',0,'revision','',0),(1338,1,'2022-07-01 01:54:12','2022-07-01 01:54:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_font_size=\"20px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" header_font_size_phone=\"22px\" header_letter_spacing_last_edited=\"on|tablet\" header_letter_spacing_phone=\"6px\" header_letter_spacing_tablet=\"8px\" header_font_size_tablet=\"30px\" header_text_color=\"#B3B3B3\" body_text_color=\"#B3B3B3\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" body_font_size_tablet=\"20px\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||59px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"11px||59px||false|false\" custom_margin=\"|-53px||-53px|false|true\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"11px||59px||false|false\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:54:12','2022-07-01 01:54:12','',85,'https://flaphotography.com/?p=1338',0,'revision','',0),(1333,1,'2022-07-01 01:45:15','2022-07-01 01:45:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_font_size=\"20px\" body_font_size_last_edited=\"on|tablet\" body_font_size_phone=\"17px\" header_font_size_last_edited=\"on|tablet\" header_font_size_phone=\"22px\" header_letter_spacing_last_edited=\"on|tablet\" header_letter_spacing_phone=\"6px\" header_letter_spacing_tablet=\"8px\" header_font_size_tablet=\"30px\" header_text_color=\"#B3B3B3\" body_text_color=\"#B3B3B3\" body_font_size_tablet=\"20px\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:45:15','2022-07-01 01:45:15','',85,'https://flaphotography.com/?p=1333',0,'revision','',0),(1335,1,'2022-07-01 01:46:44','2022-07-01 01:46:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_font_size=\"20px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" header_font_size_phone=\"22px\" header_letter_spacing_last_edited=\"on|tablet\" header_letter_spacing_phone=\"6px\" header_letter_spacing_tablet=\"8px\" header_font_size_tablet=\"30px\" header_text_color=\"#B3B3B3\" body_text_color=\"#B3B3B3\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" body_font_size_tablet=\"20px\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:46:44','2022-07-01 01:46:44','',85,'https://flaphotography.com/?p=1335',0,'revision','',0),(1349,1,'2022-07-01 02:12:02','2022-07-01 02:12:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:12:02','2022-07-01 02:12:02','',85,'https://flaphotography.com/?p=1349',0,'revision','',0),(1345,1,'2022-07-01 02:06:23','2022-07-01 02:06:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:06:23','2022-07-01 02:06:23','',85,'https://flaphotography.com/?p=1345',0,'revision','',0),(1340,1,'2022-07-01 01:55:43','2022-07-01 01:55:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_font_size=\"20px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" header_font_size_phone=\"22px\" header_letter_spacing_last_edited=\"on|tablet\" header_letter_spacing_phone=\"6px\" header_letter_spacing_tablet=\"8px\" header_font_size_tablet=\"30px\" header_text_color=\"#B3B3B3\" body_text_color=\"#B3B3B3\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" body_font_size_tablet=\"20px\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||59px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"11px||59px||false|false\" custom_margin=\"|-53px||-53px|false|true\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"11px||59px||false|false\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:55:43','2022-07-01 01:55:43','',85,'https://flaphotography.com/?p=1340',0,'revision','',0),(1342,1,'2022-07-01 01:56:24','2022-07-01 01:56:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" hover_enabled=\"0\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP\" header_font=\"Open Sans||||||||\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_font_size=\"20px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" header_font_size_phone=\"22px\" header_letter_spacing_last_edited=\"on|tablet\" header_letter_spacing_phone=\"6px\" header_letter_spacing_tablet=\"8px\" header_font_size_tablet=\"30px\" header_text_color=\"#B3B3B3\" body_text_color=\"#B3B3B3\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" body_font_size_tablet=\"20px\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"Your Title Goes Here\" button_text=\"Click Here\" _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||59px||false|false\" hover_enabled=\"0\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"11px||59px||false|false\" custom_margin=\"|-53px||-53px|false|true\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"11px||59px||false|false\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" hover_enabled=\"0\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 01:56:24','2022-07-01 01:56:24','',85,'https://flaphotography.com/?p=1342',0,'revision','',0),(1344,1,'2022-07-01 02:02:48','2022-07-01 02:02:48','','','','inherit','open','closed','','cnj-vision-img_4553-6000px-2','','','2022-07-12 15:38:49','2022-07-12 15:38:49','',0,'https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2.jpg',0,'attachment','image/jpeg',0),(1347,1,'2022-07-01 02:10:45','2022-07-01 02:10:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"21px||9px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-38px||||false|false\" sticky_enabled=\"0\"][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:10:45','2022-07-01 02:10:45','',85,'https://flaphotography.com/?p=1347',0,'revision','',0),(1346,1,'2022-07-01 02:09:51','2022-07-01 02:09:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px||9px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-38px||||false|false\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:09:51','2022-07-01 02:09:51','',85,'https://flaphotography.com/?p=1346',0,'revision','',0),(1351,1,'2022-07-01 02:12:42','2022-07-01 02:12:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_arrows=\"off\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:12:42','2022-07-01 02:12:42','',85,'https://flaphotography.com/?p=1351',0,'revision','',0),(1352,1,'2022-07-01 02:14:10','2022-07-01 02:14:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_arrows=\"off\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:14:10','2022-07-01 02:14:10','',85,'https://flaphotography.com/?p=1352',0,'revision','',0),(1355,1,'2022-07-01 02:22:57','2022-07-01 02:22:57','','','','inherit','open','closed','','francine-boss-img_6435-cp','','','2022-07-12 15:38:46','2022-07-12 15:38:46','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg',0,'attachment','image/jpeg',0),(1356,1,'2022-07-01 02:23:20','2022-07-01 02:23:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_arrows=\"off\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:23:20','2022-07-01 02:23:20','',85,'https://flaphotography.com/?p=1356',0,'revision','',0),(1354,1,'2022-07-01 02:17:08','2022-07-01 02:17:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_arrows=\"off\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:17:08','2022-07-01 02:17:08','',85,'https://flaphotography.com/?p=1354',0,'revision','',0),(1358,1,'2022-07-01 02:28:58','2022-07-01 02:28:58','','','','inherit','open','closed','','francine-boss-star-img_6433-1500px','','','2022-07-12 15:32:11','2022-07-12 15:32:11','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg',0,'attachment','image/jpeg',0),(1370,1,'2022-07-01 02:53:17','2022-07-01 02:53:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 02:53:17','2022-07-01 02:53:17','',9,'https://flaphotography.com/?p=1370',0,'revision','',0),(1359,1,'2022-07-01 02:29:53','2022-07-01 02:29:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,906,905,1358\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-1-1 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 02:29:53','2022-07-01 02:29:53','',9,'https://flaphotography.com/?p=1359',0,'revision','',0),(1362,1,'2022-07-01 02:34:00','2022-07-01 02:34:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CREATORS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:34:00','2022-07-01 02:34:00','',85,'https://flaphotography.com/?p=1362',0,'revision','',0),(1360,1,'2022-07-01 02:31:57','2022-07-01 02:31:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_arrows=\"off\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CREATORS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:31:57','2022-07-01 02:31:57','',85,'https://flaphotography.com/?p=1360',0,'revision','',0),(1361,1,'2022-07-01 02:32:57','2022-07-01 02:32:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\" show_pagination=\"off\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CREATORS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:32:57','2022-07-01 02:32:57','',85,'https://flaphotography.com/?p=1361',0,'revision','',0),(1363,1,'2022-07-01 02:36:24','2022-07-01 02:36:24','','','','inherit','open','closed','','francine-boss-star-img_6433-2500px-cp','','','2022-07-12 15:38:42','2022-07-12 15:38:42','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg',0,'attachment','image/jpeg',0),(1365,1,'2022-07-01 02:40:17','2022-07-01 02:40:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:40:17','2022-07-01 02:40:17','',85,'https://flaphotography.com/?p=1365',0,'revision','',0),(1364,1,'2022-07-01 02:37:06','2022-07-01 02:37:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CREATORS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"CNJ-VISION-IMG_4553-6000PX (2)\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:37:06','2022-07-01 02:37:06','',85,'https://flaphotography.com/?p=1364',0,'revision','',0),(1368,1,'2022-07-01 02:46:58','2022-07-01 02:46:58','','','','inherit','open','closed','','rachel-boss_8544-blue-strong-2500px2','','','2022-07-12 15:36:28','2022-07-12 15:36:28','',0,'https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (1369,1,'2022-07-01 02:48:01','2022-07-01 02:48:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 02:48:01','2022-07-01 02:48:01','',85,'https://flaphotography.com/?p=1369',0,'revision','',0),(1372,1,'2022-07-01 02:57:03','2022-07-01 02:57:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,642\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 02:57:03','2022-07-01 02:57:03','',9,'https://flaphotography.com/?p=1372',0,'revision','',0),(1375,1,'2022-07-01 03:04:08','2022-07-01 03:04:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 03:04:08','2022-07-01 03:04:08','',9,'https://flaphotography.com/?p=1375',0,'revision','',0),(1373,1,'2022-07-01 02:59:04','2022-07-01 02:59:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 02:59:04','2022-07-01 02:59:04','',9,'https://flaphotography.com/?p=1373',0,'revision','',0),(1374,1,'2022-07-01 03:03:49','2022-07-01 03:03:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"22px||30px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\" title_text=\"MR-ED-IMG_7336-CROP-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\" title_text=\"DESTINY-IMG_7351-1300PX2\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" animation_style=\"fold\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\" title_text=\"ADRIAN-IMG_7328-1300px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"-3px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_delay=\"300ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 03:03:49','2022-07-01 03:03:49','',9,'https://flaphotography.com/?p=1374',0,'revision','',0),(1377,1,'2022-07-01 03:06:48','2022-07-01 03:06:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 03:06:48','2022-07-01 03:06:48','',9,'https://flaphotography.com/?p=1377',0,'revision','',0),(1417,1,'2022-07-01 04:48:47','2022-07-01 04:48:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 04:48:47','2022-07-01 04:48:47','',9,'https://flaphotography.com/?p=1417',0,'revision','',0),(1378,1,'2022-07-01 03:09:05','2022-07-01 03:09:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" text_orientation_last_edited=\"on|tablet\" sticky_enabled=\"0\" text_orientation_phone=\"center\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062,1061\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" text_orientation_last_edited=\"on|phone\" text_orientation_phone=\"center\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 03:09:05','2022-07-01 03:09:05','',9,'https://flaphotography.com/?p=1378',0,'revision','',0),(1380,1,'2022-07-01 03:19:10','2022-07-01 03:19:10','','','','inherit','open','closed','','flow-presence_mg_8542-1-fq-2500px-cp','','','2022-07-12 15:36:24','2022-07-12 15:36:24','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg',0,'attachment','image/jpeg',0),(1381,1,'2022-07-01 03:19:44','2022-07-01 03:19:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Flow-presence_MG_8542-1-FQ-2500PX-CP\" sticky_enabled=\"0\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:19:44','2022-07-01 03:19:44','',85,'https://flaphotography.com/?p=1381',0,'revision','',0),(1385,1,'2022-07-01 03:29:46','2022-07-01 03:29:46','','','','inherit','open','closed','','noelle-headshot-img_5345-2500px-cp2','','','2022-07-12 15:36:20','2022-07-12 15:36:20','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg',0,'attachment','image/jpeg',0),(1388,1,'2022-07-01 03:40:47','2022-07-01 03:40:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:40:47','2022-07-01 03:40:47','',85,'https://flaphotography.com/?p=1388',0,'revision','',0),(1386,1,'2022-07-01 03:30:19','2022-07-01 03:30:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Flow-presence_MG_8542-1-FQ-2500PX-CP\" sticky_enabled=\"0\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-CP2\" sticky_enabled=\"0\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:30:19','2022-07-01 03:30:19','',85,'https://flaphotography.com/?p=1386',0,'revision','',0),(1383,1,'2022-07-01 03:20:47','2022-07-01 03:20:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" width=\"93%\" max_width=\"1557px\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"||100px||false|false\" custom_padding_tablet=\"0px||122px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"||||false|false\" custom_margin=\"||||false|false\" min_height=\"617.8px\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-Boss-IMG_6435-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"RACHEL-BOSS_8544-BLUE-STRONG-2500PX2\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"Flow-presence_MG_8542-1-FQ-2500PX-CP\" sticky_enabled=\"0\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:20:47','2022-07-01 03:20:47','',85,'https://flaphotography.com/?p=1383',0,'revision','',0),(1387,1,'2022-07-01 03:40:15','2022-07-01 03:40:15','','','','inherit','open','closed','','noelle-headshot-img_5345-2500px-mob-slider','','','2022-07-12 15:38:36','2022-07-12 15:38:36','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg',0,'attachment','image/jpeg',0),(1389,1,'2022-07-01 03:44:39','2022-07-01 03:44:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:44:39','2022-07-01 03:44:39','',85,'https://flaphotography.com/?p=1389',0,'revision','',0),(1392,1,'2022-07-01 03:53:56','2022-07-01 03:53:56','','','','inherit','open','closed','','grace-img_5248-1-2500px-cp','','','2022-07-12 15:29:17','2022-07-12 15:29:17','',0,'https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg',0,'attachment','image/jpeg',0),(1393,1,'2022-07-01 03:54:50','2022-07-01 03:54:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:54:50','2022-07-01 03:54:50','',85,'https://flaphotography.com/?p=1393',0,'revision','',0),(1391,1,'2022-07-01 03:47:56','2022-07-01 03:47:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:47:56','2022-07-01 03:47:56','',85,'https://flaphotography.com/?p=1391',0,'revision','',0),(1394,1,'2022-07-01 03:58:25','2022-07-01 03:58:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 03:58:25','2022-07-01 03:58:25','',85,'https://flaphotography.com/?p=1394',0,'revision','',0),(1395,1,'2022-07-01 04:02:20','2022-07-01 04:02:20','','','','inherit','open','closed','','young-x-madness-img_0016-2500px-cp','','','2022-07-12 15:36:18','2022-07-12 15:36:18','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg',0,'attachment','image/jpeg',0),(1396,1,'2022-07-01 04:03:17','2022-07-01 04:03:17','','','','inherit','open','closed','','young-x-madness-img_0016-2000px','','','2022-07-12 15:36:14','2022-07-12 15:36:14','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg',0,'attachment','image/jpeg',0),(1398,1,'2022-07-01 04:05:46','2022-07-01 04:05:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:05:46','2022-07-01 04:05:46','',85,'https://flaphotography.com/?p=1398',0,'revision','',0),(1401,1,'2022-07-01 04:21:30','2022-07-01 04:21:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:21:30','2022-07-01 04:21:30','',85,'https://flaphotography.com/?p=1401',0,'revision','',0),(1400,1,'2022-07-01 04:16:01','2022-07-01 04:16:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:16:01','2022-07-01 04:16:01','',85,'https://flaphotography.com/?p=1400',0,'revision','',0),(1404,1,'2022-07-01 04:29:30','2022-07-01 04:29:30','','','','inherit','open','closed','','img_4142-pr-suite-2000px-cp','','','2022-07-12 15:36:12','2022-07-12 15:36:12','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg',0,'attachment','image/jpeg',0),(1413,1,'2022-07-01 04:38:15','2022-07-01 04:38:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:38:15','2022-07-01 04:38:15','',85,'https://flaphotography.com/?p=1413',0,'revision','',0),(1410,1,'2022-07-01 04:37:27','2022-07-01 04:37:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:37:27','2022-07-01 04:37:27','',85,'https://flaphotography.com/?p=1410',0,'revision','',0),(1406,1,'2022-07-01 04:31:05','2022-07-01 04:31:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:31:05','2022-07-01 04:31:05','',85,'https://flaphotography.com/?p=1406',0,'revision','',0),(1405,1,'2022-07-01 04:29:51','2022-07-01 04:29:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:29:51','2022-07-01 04:29:51','',85,'https://flaphotography.com/?p=1405',0,'revision','',0),(1403,1,'2022-07-01 04:23:51','2022-07-01 04:23:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:23:51','2022-07-01 04:23:51','',85,'https://flaphotography.com/?p=1403',0,'revision','',0),(1408,1,'2022-07-01 04:34:28','2022-07-01 04:34:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:34:28','2022-07-01 04:34:28','',85,'https://flaphotography.com/?p=1408',0,'revision','',0),(1407,1,'2022-07-01 04:32:57','2022-07-01 04:32:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flaphotography.com/corporate/#CorporatePrice-Section\" button_text=\"GET BIG 20% OFF\" button_alignment=\"left\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#E06100\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"12px|||-18px|false|false\" custom_margin_tablet=\"|||0px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#D6D6D6\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4\" module_class=\"video-autoplayb\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:32:57','2022-07-01 04:32:57','',85,'https://flaphotography.com/?p=1407',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1416,1,'2022-07-01 04:46:45','2022-07-01 04:46:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" auto_speed=\"3500\" auto_ignore_hover=\"on\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:46:45','2022-07-01 04:46:45','',85,'https://flaphotography.com/?p=1416',0,'revision','',0),(1414,1,'2022-07-01 04:40:39','2022-07-01 04:40:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"IMG_4142-PR-Suite-2000PX-CP\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"Young-X-Madness-IMG_0016-2500PX-CP\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" background_last_edited=\"on|desktop\" sticky_enabled=\"0\" title_text=\"GRACE-IMG_5248-1-2500PX-CP\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_image src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:40:39','2022-07-01 04:40:39','',85,'https://flaphotography.com/?p=1414',0,'revision','',0),(1418,1,'2022-07-01 04:56:46','2022-07-01 04:56:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-01 04:56:46','2022-07-01 04:56:46','',85,'https://flaphotography.com/?p=1418',0,'revision','',0),(1420,1,'2022-07-01 20:27:15','2022-07-01 20:27:15','','','','inherit','open','closed','','daddy-boss-img_1000-1500px','','','2022-07-12 15:31:58','2022-07-12 15:31:58','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg',0,'attachment','image/jpeg',0),(1423,1,'2022-07-01 20:36:55','2022-07-01 20:36:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:36:55','2022-07-01 20:36:55','',9,'https://flaphotography.com/?p=1423',0,'revision','',0),(1422,1,'2022-07-01 20:28:34','2022-07-01 20:28:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1110,1062\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1104,1105,654,665\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1420\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:28:34','2022-07-01 20:28:34','',9,'https://flaphotography.com/?p=1422',0,'revision','',0),(1426,1,'2022-07-01 20:54:26','2022-07-01 20:54:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:54:26','2022-07-01 20:54:26','',9,'https://flaphotography.com/?p=1426',0,'revision','',0),(1429,1,'2022-07-01 20:58:29','2022-07-01 20:58:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\" background_blend=\"screen\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"7px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:58:29','2022-07-01 20:58:29','',9,'https://flaphotography.com/?p=1429',0,'revision','',0),(1428,1,'2022-07-01 20:57:03','2022-07-01 20:57:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\" background_blend=\"screen\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.68)\" custom_padding=\"16px||12px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"3px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 20:57:03','2022-07-01 20:57:03','',9,'https://flaphotography.com/?p=1428',0,'revision','',0),(1436,1,'2022-07-01 21:13:34','2022-07-01 21:13:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:13:34','2022-07-01 21:13:34','',9,'https://flaphotography.com/?p=1436',0,'revision','',0),(1432,1,'2022-07-01 21:00:53','2022-07-01 21:00:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\" background_blend=\"screen\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"6px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"7px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4526-1-LOOK-FINAL4000PX-CP-scaled.jpg\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:00:53','2022-07-01 21:00:53','',9,'https://flaphotography.com/?p=1432',0,'revision','',0),(1435,1,'2022-07-01 21:12:02','2022-07-01 21:12:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:12:02','2022-07-01 21:12:02','',9,'https://flaphotography.com/?p=1435',0,'revision','',0),(1434,1,'2022-07-01 21:03:51','2022-07-01 21:03:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" sticky_enabled=\"0\" background_blend=\"screen\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"6px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_font_size=\"22px\" text_letter_spacing=\"7px\" hover_enabled=\"0\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" text_text_color=\"rgba(214,214,214,0.71)\" sticky_enabled=\"0\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665,1420\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" custom_padding=\"10px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Francine-BOSS-STAR-IMG_6433-1500PX\" sticky_enabled=\"0\" parallax=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li><strong><u>COMBO</u></strong>: Outfit + Lipstick – Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:03:51','2022-07-01 21:03:51','',9,'https://flaphotography.com/?p=1434',0,'revision','',0),(1437,1,'2022-07-01 21:14:30','2022-07-01 21:14:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:14:30','2022-07-01 21:14:30','',9,'https://flaphotography.com/?p=1437',0,'revision','',0),(1438,1,'2022-07-01 21:16:37','2022-07-01 21:16:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"24px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"20px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:16:37','2022-07-01 21:16:37','',9,'https://flaphotography.com/?p=1438',0,'revision','',0),(1473,1,'2022-07-02 19:25:28','2022-07-02 19:25:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-02 19:25:28','2022-07-02 19:25:28','',9,'https://flaphotography.com/?p=1473',0,'revision','',0),(1440,1,'2022-07-01 21:19:36','2022-07-01 21:19:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" hover_enabled=\"0\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-01 21:19:36','2022-07-01 21:19:36','',9,'https://flaphotography.com/?p=1440',0,'revision','',0),(1443,1,'2022-07-01 21:25:50','2022-07-01 21:25:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:25:50','2022-07-01 21:25:50','',61,'https://flaphotography.com/?p=1443',0,'revision','',0),(1444,1,'2022-07-01 21:29:16','2022-07-01 21:29:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#000000 1%|#29c4a9 100%\" background_blend=\"overlay\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:29:16','2022-07-01 21:29:16','',61,'https://flaphotography.com/?p=1444',0,'revision','',0),(1447,1,'2022-07-01 21:38:25','2022-07-01 21:38:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#000000 1%|rgba(29,186,81,0.67) 100%\" background_blend=\"overlay\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" header_text_color=\"#D6D6D6\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" parallax=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 1%|#b7b7b7 100%\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:38:25','2022-07-01 21:38:25','',61,'https://flaphotography.com/?p=1447',0,'revision','',0),(1446,1,'2022-07-01 21:31:43','2022-07-01 21:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(143,143,143,0.15)\" custom_padding=\"34px||27px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#000000 1%|rgba(29,186,81,0.67) 100%\" background_blend=\"overlay\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" header_text_color=\"#D6D6D6\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Modeling</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Fashion</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:31:43','2022-07-01 21:31:43','',61,'https://flaphotography.com/?p=1446',0,'revision','',0),(1470,1,'2022-07-02 16:13:41','2022-07-02 16:13:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" background_blend=\"multiply\" hover_enabled=\"0\" global_colors_info=\"{}\" parallax=\"on\" background_color_gradient_overlays_image=\"on\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-02 16:13:41','2022-07-02 16:13:41','',61,'https://flaphotography.com/?p=1470',0,'revision','',0),(1452,1,'2022-07-01 22:18:12','2022-07-01 22:18:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"253deg\" background_color_gradient_stops=\"rgba(0,0,0,0.97) 1%|rgba(140,140,140,0.87) 100%\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" background_blend=\"overlay\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 22:18:12','2022-07-01 22:18:12','',61,'https://flaphotography.com/?p=1452',0,'revision','',0),(1451,1,'2022-07-01 21:44:24','2022-07-01 21:44:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.97) 1%|rgba(140,140,140,0.87) 100%\" background_blend=\"overlay\" sticky_enabled=\"0\" background_color_gradient_direction=\"253deg\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" header_text_color=\"#D6D6D6\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" sticky_enabled=\"0\" use_background_color_gradient=\"on\" parallax=\"on\" background_color_gradient_overlays_image=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$325 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" hover_enabled=\"0\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 21:44:24','2022-07-01 21:44:24','',61,'https://flaphotography.com/?p=1451',0,'revision','',0),(1453,1,'2022-07-01 22:23:53','2022-07-01 22:23:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"253deg\" background_color_gradient_stops=\"rgba(0,0,0,0.97) 1%|rgba(140,140,140,0.87) 100%\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" background_blend=\"overlay\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\" animation_duration=\"1750ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_duration=\"1750ms\" sticky_enabled=\"0\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_duration=\"1750ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" hover_enabled=\"0\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\" animation_duration=\"1750ms\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"fold\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-01 22:23:53','2022-07-01 22:23:53','',61,'https://flaphotography.com/?p=1453',0,'revision','',0),(1457,1,'2022-07-01 22:41:33','2022-07-01 22:41:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"20px|||||\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_font=\"Arial|600|||||||\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_text_align=\"center\" header_font_size_last_edited=\"on|tablet\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_phone=\"16px\" header_font_size_tablet=\"22px\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:41:33','2022-07-01 22:41:33','',98,'https://flaphotography.com/?p=1457',0,'revision','',0),(1455,1,'2022-07-01 22:32:43','2022-07-01 22:32:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"OUR RETOUCHING SERVICES\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#000000\" z_index=\"auto\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Samples of our editing</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Click on the image to magnify it</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"132,131,191,137,409,407,406,405\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"134,162,140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.16\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"22px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"15px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"26px\" title_font_size_phone=\"18px\" title_font_size_last_edited=\"on|phone\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">Gallary. Click on the image to open gallary.</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:32:43','2022-07-01 22:32:43','',98,'https://flaphotography.com/?p=1455',0,'revision','',0),(1460,1,'2022-07-01 22:49:54','2022-07-01 22:49:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"20px|||||\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_font=\"Arial|600|||||||\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_text_align=\"center\" header_font_size_last_edited=\"on|tablet\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_phone=\"16px\" header_font_size_tablet=\"22px\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"191,137,134,162\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:49:54','2022-07-01 22:49:54','',98,'https://flaphotography.com/?p=1460',0,'revision','',0),(1464,1,'2022-07-02 15:23:54','2022-07-02 15:23:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" saved_tabs=\"all\" template_type=\"section\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" title_text=\"KCJ-Photography-BLA-Logo-300PX\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','HEADER MENU','','inherit','closed','closed','','234-revision-v1','','','2022-07-02 15:23:54','2022-07-02 15:23:54','',234,'https://flaphotography.com/?p=1464',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1462,1,'2022-07-01 22:50:49','2022-07-01 22:50:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/06/KCJ-Photography-BLA-Logo-300pxJun28-REV.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"19px||0px|||\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"8px|||||\"][et_pb_column _builder_version=\"4.17.4\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_font=\"Arial|600|||||||\" header_font_size=\"22px\" header_letter_spacing=\"2px\" header_text_align=\"center\" header_font_size_last_edited=\"on|tablet\" hover_enabled=\"0\" sticky_enabled=\"0\" header_font_size_phone=\"16px\" header_font_size_tablet=\"22px\"]<h1>RETOUCHING SERVICES</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" z_index=\"0\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||50px||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Outfit Color Change\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" background_color=\"#6b6b6b\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" hover_enabled=\"0\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"51px||1px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - Red dress.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Dress+ purse colored green.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Clored Arctic shade.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.4\" transform_scale=\"124%|124%\" custom_margin=\"|auto|24px|auto||\" custom_padding=\"0px||||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"260px||200px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><strong>Original</strong> - White suit.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><b>After</b>- Parts colored black.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.17.4\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"12px\" custom_margin=\"7px|||||\" custom_padding=\"|||0px||\" hover_enabled=\"0\" border_width_all=\"1px\" border_color_all=\"#b3b3b3\" border_style_all=\"dotted\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><b>After</b> Colored blue-Backg. Change</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Facial Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"15px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"147,148,154,141,398,395,397,396\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"191,137,134,162\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"140,139,719,717,718\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Background Retouch\" _builder_version=\"4.17.4\" title_font=\"Arial|600|||||||\" title_text_align=\"center\" title_font_size=\"20px\" title_letter_spacing=\"4px\" title_line_height=\"1.2em\" content_font=\"Arial||||||||\" content_font_size=\"16px\" content_letter_spacing=\"2px\" custom_margin=\"2px||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"-28px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||5px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" custom_padding_last_edited=\"on|tablet\" title_font_size_tablet=\"18px\" title_font_size_phone=\"16px\" title_font_size_last_edited=\"on|desktop\" content_font_size_tablet=\"\" content_font_size_phone=\"14px\" content_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\" background_color=\"#6b6b6b\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"142,144,122,125,729,731,730\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||0px|false|false\" box_shadow_style=\"preset1\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"127,126,133,130\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" caption_font=\"Arial||||||||\" caption_text_color=\"#000000\" text_orientation=\"center\" width=\"100%\" custom_margin=\"||-1px|||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" border_width_all=\"3px\" border_style_all=\"dashed\" global_colors_info=\"{}\" sticky_enabled=\"0\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','POST PRODUCTION','','inherit','closed','closed','','98-revision-v1','','','2022-07-01 22:50:49','2022-07-01 22:50:49','',98,'https://flaphotography.com/?p=1462',0,'revision','',0),(1480,1,'2022-07-02 20:13:25','2022-07-02 20:13:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-02 20:13:25','2022-07-02 20:13:25','',9,'https://flaphotography.com/?p=1480',0,'revision','',0),(1483,1,'2022-07-02 20:24:04','2022-07-02 20:24:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" align=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#f4f4f4 0%|#dbdbdb 100%\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"MAKE A RESERVATION\" custom_message=\"PERSONALIZED PACKAGE BOOKED||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder||%%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Offer provided ||et_pb_line_break_holder||%%Offer%%||et_pb_line_break_holder||||et_pb_line_break_holder||Number of Outfits||et_pb_line_break_holder||%%Outfit%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%package%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date Booked:||et_pb_line_break_holder||%%date-time-picker%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.18.0\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" hover_enabled=\"0\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" module_class=\"cu-form \" sticky_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Select your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22 Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Branding - Lifestyle, Artists, Creators%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Personal Branding - On Location%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Backdrop_Color\" field_title=\"Backdrop color?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Black%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22White%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Red%22,%22checked%22:0,%22dragID%22:10},{%22value%22:%22Thunder-Grey%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Fashion-Grey%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Beiige%22,%22checked%22:0,%22dragID%22:5},{%22value%22:%22Yellow%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Blue-Miist%22,%22checked%22:0,%22dragID%22:6},{%22value%22:%22Brown-Cocoa%22,%22checked%22:0,%22dragID%22:7},{%22value%22:%22Brown-Mocha%22,%22checked%22:0,%22dragID%22:8},{%22value%22:%22Pink%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%22Purple%22,%22checked%22:0,%22dragID%22:9}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Package\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Personalized Package%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22$210 / 3 Retouched Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22$349 / 6 Retouched Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22$449 / 10 Retouched Photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Offer\" field_title=\"Enter offer provided $\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is%22,%22value%22:%22Personalized Package%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Outfit\" field_title=\"Number of Outfits?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%221 Outfit%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%222 Outfits%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%223 Outfits%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%224 Outfits%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%225 Outfits%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date-time-picker\" field_title=\"What date would you like the services?\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (such as your outfit color, etc.)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Personalized Reservation','','publish','closed','closed','','personalized-reservation','','','2022-09-15 19:50:30','2022-09-15 19:50:30','',0,'https://flaphotography.com/?post_type=divi_overlay&#038;p=1483',0,'divi_overlay','',0),(1499,1,'2022-07-02 21:43:02','2022-07-02 21:43:02','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:43:02','2022-07-02 21:43:02','',367,'https://flaphotography.com/?p=1499',0,'revision','',0),(1512,1,'2022-07-02 21:56:17','2022-07-02 21:56:17','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:56:17','2022-07-02 21:56:17','',367,'https://flaphotography.com/?p=1512',0,'revision','',0),(1501,1,'2022-07-02 21:44:28','2022-07-02 21:44:28','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:44:28','2022-07-02 21:44:28','',367,'https://flaphotography.com/?p=1501',0,'revision','',0),(1502,1,'2022-07-02 21:44:53','2022-07-02 21:44:53','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:44:53','2022-07-02 21:44:53','',367,'https://flaphotography.com/?p=1502',0,'revision','',0),(1510,1,'2022-07-02 21:55:55','2022-07-02 21:55:55','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:55:55','2022-07-02 21:55:55','',367,'https://flaphotography.com/?p=1510',0,'revision','',0),(1508,1,'2022-07-02 21:53:02','2022-07-02 21:53:02','For personalized contact form','','','inherit','open','closed','','francine-boss-star-img_6433-2500px-cp-2','','','2022-07-02 21:53:48','2022-07-02 21:53:48','',1483,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg',0,'attachment','image/jpeg',0),(1511,1,'2022-07-02 21:56:11','2022-07-02 21:56:11','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:56:11','2022-07-02 21:56:11','',367,'https://flaphotography.com/?p=1511',0,'revision','',0),(1509,1,'2022-07-02 21:55:46','2022-07-02 21:55:46','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:55:46','2022-07-02 21:55:46','',367,'https://flaphotography.com/?p=1509',0,'revision','',0),(1504,1,'2022-07-02 21:49:02','2022-07-02 21:49:02','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_bg_enable_color=\"on\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#474747\" module_id=\"CSS ID: overlay_unique_id_1483\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:49:02','2022-07-02 21:49:02','',367,'https://flaphotography.com/?p=1504',0,'revision','',0),(1505,1,'2022-07-02 21:49:26','2022-07-02 21:49:26','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_bg_enable_color=\"on\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#474747\" module_id=\"overlay_unique_id_1483\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:49:26','2022-07-02 21:49:26','',367,'https://flaphotography.com/?p=1505',0,'revision','',0),(1506,1,'2022-07-02 21:49:29','2022-07-02 21:49:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_bg_enable_color=\"on\" button_text_color__hover_enabled=\"on|desktop\" sticky_enabled=\"0\" button_text_color__hover=\"#474747\" module_id=\"overlay_unique_id_1483\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.16\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||140px|false|false\" custom_margin_phone=\"|auto||40px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||0px||\" custom_padding_tablet=\"\" custom_padding_phone=\"|20px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-02 21:49:29','2022-07-02 21:49:29','',9,'https://flaphotography.com/?p=1506',0,'revision','',0),(1517,1,'2022-07-02 21:59:59','2022-07-02 21:59:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-02 21:59:59','2022-07-02 21:59:59','',9,'https://flaphotography.com/?p=1517',0,'revision','',0),(1514,1,'2022-07-02 21:58:06','2022-07-02 21:58:06','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:58:06','2022-07-02 21:58:06','',367,'https://flaphotography.com/?p=1514',0,'revision','',0),(1516,1,'2022-07-02 21:59:56','2022-07-02 21:59:56','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-02 21:59:56','2022-07-02 21:59:56','',367,'https://flaphotography.com/?p=1516',0,'revision','',0),(1515,1,'2022-07-02 21:58:23','2022-07-02 21:58:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-02 21:58:23','2022-07-02 21:58:23','',9,'https://flaphotography.com/?p=1515',0,'revision','',0),(1518,1,'2022-07-03 02:29:48','2022-07-03 02:29:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"RGBA(255,255,255,0)\" custom_padding=\"25px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\" title_text=\"Francine-BOSS-STAR-IMG_6433-2500PX-CP\" align=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"#f4f4f4 0%|#dbdbdb 100%\" background_color_gradient_start=\"#f4f4f4\" background_color_gradient_end=\"#dbdbdb\" width_tablet=\"\" width_phone=\"90%\" width_last_edited=\"on|phone\" custom_padding=\"15px|0px|15px|15px|true|false\" border_width_all=\"7px\" border_color_all=\"#a02b16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form captcha=\"off\" email=\"kassi@flapstart.com,kassijose29@gmail.com\" title=\"MAKE A RESERVATION\" custom_message=\"PERSONALIZED PACKAGE BOOKED||et_pb_line_break_holder||||et_pb_line_break_holder||Name:||et_pb_line_break_holder||%%name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email address:||et_pb_line_break_holder||%%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Phone number:||et_pb_line_break_holder||%%phone%%||et_pb_line_break_holder||||et_pb_line_break_holder||Your needs:||et_pb_line_break_holder||%%yourneeds%%||et_pb_line_break_holder||||et_pb_line_break_holder||Offer provided ||et_pb_line_break_holder||%%Offer%%||et_pb_line_break_holder||||et_pb_line_break_holder||Number of Outfits||et_pb_line_break_holder||%%Outfit%%||et_pb_line_break_holder||||et_pb_line_break_holder||Package Selected:||et_pb_line_break_holder||%%package%%||et_pb_line_break_holder||||et_pb_line_break_holder||Date Booked:||et_pb_line_break_holder||%%date-time-picker%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message||et_pb_line_break_holder||%%message%%\" success_message=\"Thanks for your reservation! You\'ll be responded in less than 24 business hours.\" submit_button_text=\"Submit\" _builder_version=\"4.17.4\" _module_preset=\"default\" _unique_id=\"18ef895d-c30d-44bb-8cb8-be07423c0179\" form_field_background_color=\"#F2F2F2\" form_field_text_color=\"#474747\" form_field_custom_padding=\"15px|15px|15px|15px|true|true\" title_font=\"Open Sans|600|||||||\" title_text_color=\"#ad1616\" title_font_size=\"22px\" form_field_font=\"Arial||||||||\" form_field_font_size=\"15px\" form_field_line_height=\"1.2em\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"1px\" button_border_color=\"#000000\" button_font=\"Open Sans|300|||||||\" button_icon=\"&#x4e;||divi||400\" button_icon_color=\"#FFFFFF\" custom_padding=\"|16px||0px|false|false\" title_font_size_tablet=\"\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|phone\" border_width_all=\"1px\" border_color_all=\"#6B6B6B\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#96150f\" button_bg_enable_color__hover=\"on\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\"][et_pb_contact_field field_id=\"Name\" field_title=\"Full Name\" allowed_symbols=\"letters\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone # (Optional)\" allowed_symbols=\"numbers\" required_mark=\"off\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Yourneeds\" field_title=\"Select your needs.\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Corporate Headshots%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22 Corporate Shots on Location%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Personal Branding - Lifestyle, Artists, Creators%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Personal Branding - On Location%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Backdrop_Color\" field_title=\"Backdrop color?\" field_type=\"checkbox\" checkbox_options=\"%91{%22value%22:%22Black%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22White%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22Red%22,%22checked%22:0,%22dragID%22:10},{%22value%22:%22Thunder-Grey%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22Fashion-Grey%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%22Beiige%22,%22checked%22:0,%22dragID%22:5},{%22value%22:%22Yellow%22,%22checked%22:0,%22dragID%22:3},{%22value%22:%22Blue-Miist%22,%22checked%22:0,%22dragID%22:6},{%22value%22:%22Brown-Cocoa%22,%22checked%22:0,%22dragID%22:7},{%22value%22:%22Brown-Mocha%22,%22checked%22:0,%22dragID%22:8},{%22value%22:%22Pink%22,%22checked%22:0,%22dragID%22:4},{%22value%22:%22Purple%22,%22checked%22:0,%22dragID%22:9}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" form_field_focus_text_color=\"#F9AA00\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Package\" field_title=\"Select your package\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22Personalized Package%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%22$210 / 3 Retouched Photos%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22$349 / 6 Retouched Photos%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%22$449 / 10 Retouched Photos%22,%22checked%22:0,%22dragID%22:2}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22A Company, Business%22},{%22field%22:%22who%22,%22condition%22:%22is%22,%22value%22:%22Artist. Musician, Speaker%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Offer\" field_title=\"Enter offer provided $\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22package%22,%22condition%22:%22is%22,%22value%22:%22Personalized Package%22}%93\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Outfit\" field_title=\"Number of Outfits?\" field_type=\"radio\" radio_options=\"%91{%22value%22:%221 Outfit%22,%22checked%22:0,%22dragID%22:-1},{%22value%22:%222 Outfits%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%223 Outfits%22,%22checked%22:0,%22dragID%22:1},{%22value%22:%224 Outfits%22,%22checked%22:0,%22dragID%22:2},{%22value%22:%225 Outfits%22,%22checked%22:0,%22dragID%22:3}%93\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"date-time-picker\" field_title=\"What date would you like the services?\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message (such as your outfit color, etc.)\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Personalized Photography','','publish','closed','closed','','personalized-photography','','','2022-07-03 02:35:18','2022-07-03 02:35:18','',0,'https://flaphotography.com/?post_type=divi_overlay&#038;p=1518',0,'divi_overlay','',0),(1520,1,'2022-07-03 02:30:59','2022-07-03 02:30:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" hover_enabled=\"0\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-03 02:30:59','2022-07-03 02:30:59','',85,'https://flaphotography.com/?p=1520',0,'revision','',0),(1522,1,'2022-07-03 02:42:34','2022-07-03 02:42:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 02:42:34','2022-07-03 02:42:34','',61,'https://flaphotography.com/?p=1522',0,'revision','',0),(1523,1,'2022-07-03 02:46:37','2022-07-03 02:46:37','For Mobile view of Fashion page background','','','inherit','open','closed','','noelle-headshot-img_5345-2500px-mob','','','2022-07-12 15:32:00','2022-07-12 15:32:00','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg',0,'attachment','image/jpeg',0),(1524,1,'2022-07-03 02:46:56','2022-07-03 02:46:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" hover_enabled=\"0\" global_colors_info=\"{}\" background_last_edited=\"on|phone\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_phone=\"on\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 02:46:56','2022-07-03 02:46:56','',61,'https://flaphotography.com/?p=1524',0,'revision','',0),(1528,1,'2022-07-03 02:54:53','2022-07-03 02:54:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 02:54:53','2022-07-03 02:54:53','',61,'https://flaphotography.com/?p=1528',0,'revision','',0),(1526,1,'2022-07-03 02:48:43','2022-07-03 02:48:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" hover_enabled=\"0\" global_colors_info=\"{}\" background_last_edited=\"on|tablet\" sticky_enabled=\"0\" title_text=\"Noelle-Headshot-IMG_5345-2500PX-MOB\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_phone=\"on\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" hover_enabled=\"0\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\" button_bg_color=\"rgba(255,255,255,0.41)\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|0px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|||15px|false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 02:48:43','2022-07-03 02:48:43','',61,'https://flaphotography.com/?p=1526',0,'revision','',0),(1527,1,'2022-07-03 02:54:50','2022-07-03 02:54:50','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-03 02:54:50','2022-07-03 02:54:50','',367,'https://flaphotography.com/?p=1527',0,'revision','',0),(1529,1,'2022-07-03 03:04:42','2022-07-03 03:04:42','For Mobile view on Fashion page background','','','inherit','open','closed','','ash-leanimg_0004_2-3000-crop','','','2022-07-12 15:36:47','2022-07-12 15:36:47','',0,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg',0,'attachment','image/jpeg',0),(1531,1,'2022-07-03 03:10:09','2022-07-03 03:10:09','','','','inherit','open','closed','','ash-leanimg_0004_2-3000px','','','2022-07-12 15:36:44','2022-07-12 15:36:44','',0,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px.jpg',0,'attachment','image/jpeg',0),(1532,1,'2022-07-03 03:11:02','2022-07-03 03:11:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg\" parallax=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-LeanIMG_0004_2-3000px\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 03:11:02','2022-07-03 03:11:02','',61,'https://flaphotography.com/?p=1532',0,'revision','',0),(1533,1,'2022-07-03 03:12:03','2022-07-03 03:12:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-GAZE-IMG_0003_3-2600-FREQ\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 03:12:03','2022-07-03 03:12:03','',61,'https://flaphotography.com/?p=1533',0,'revision','',0),(1534,1,'2022-07-03 03:19:48','2022-07-03 03:19:48','','','','inherit','open','closed','','ash-gaze-img_0003_700px-mob','','','2022-07-12 15:26:03','2022-07-12 15:26:03','',0,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg',0,'attachment','image/jpeg',0),(1535,1,'2022-07-03 03:21:17','2022-07-03 03:21:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"ASH-GAZE-IMG_0003_700PX-MOB\" sticky_enabled=\"0\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_phone=\"on\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_tablet=\"on\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-03 03:21:17','2022-07-03 03:21:17','',61,'https://flaphotography.com/?p=1535',0,'revision','',0),(1537,1,'2022-07-05 00:21:57','2022-07-05 00:21:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"0px||122px||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-05 00:21:57','2022-07-05 00:21:57','',85,'https://flaphotography.com/?p=1537',0,'revision','',0),(1538,1,'2022-07-05 00:39:53','2022-07-05 00:39:53','','','','inherit','open','closed','','q-lean-gaze-img_4228-1500px','','','2022-07-12 15:38:02','2022-07-12 15:38:02','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg',0,'attachment','image/jpeg',0),(1539,1,'2022-07-05 00:39:58','2022-07-05 00:39:58','','','','inherit','open','closed','','q-wind-img_4233-1500px','','','2022-07-12 15:31:56','2022-07-12 15:31:56','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg',0,'attachment','image/jpeg',0),(1544,1,'2022-07-05 00:59:05','2022-07-05 00:59:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"-40px||52px||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-05 00:59:05','2022-07-05 00:59:05','',85,'https://flaphotography.com/?p=1544',0,'revision','',0),(1542,1,'2022-07-05 00:51:39','2022-07-05 00:51:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height=\"617.8px\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"-40px||52px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-05 00:51:39','2022-07-05 00:51:39','',85,'https://flaphotography.com/?p=1542',0,'revision','',0),(1541,1,'2022-07-05 00:42:02','2022-07-05 00:42:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-05 00:42:02','2022-07-05 00:42:02','',9,'https://flaphotography.com/?p=1541',0,'revision','',0),(1545,1,'2022-07-06 00:19:03','2022-07-06 00:19:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" min_height_last_edited=\"on|tablet\" min_height_phone=\"479px\" min_height_tablet=\"520px\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP-scaled.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"-40px||52px||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:19:03','2022-07-06 00:19:03','',85,'https://flaphotography.com/?p=1545',0,'revision','',0),(1548,1,'2022-07-06 00:25:13','2022-07-06 00:25:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" min_height_last_edited=\"on|tablet\" min_height_phone=\"479px\" min_height_tablet=\"520px\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-CP2-scaled.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"IMG_4544-1-CNJ--ITS-TIME-CP2\" sticky_enabled=\"0\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"-40px||52px||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:25:13','2022-07-06 00:25:13','',85,'https://flaphotography.com/?p=1548',0,'revision','',0),(1551,1,'2022-07-06 00:36:33','2022-07-06 00:36:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"||45px||false|false\" custom_margin_phone=\"||45px||false|false\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP\" sticky_enabled=\"0\" heading=\"LIFESTYLE\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"-40px||52px||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:36:33','2022-07-06 00:36:33','',85,'https://flaphotography.com/?p=1551',0,'revision','',0),(1555,1,'2022-07-06 00:47:49','2022-07-06 00:47:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||15px||false|false\" custom_margin_phone=\"||20px||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-11px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:47:49','2022-07-06 00:47:49','',85,'https://flaphotography.com/?p=1555',0,'revision','',0),(1554,1,'2022-07-06 00:44:07','2022-07-06 00:44:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||-45px||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"||15px||false|false\" custom_margin_phone=\"||2px||false|false\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP\" sticky_enabled=\"0\" heading=\"LIFESTYLE\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||-2px||false|false\" custom_margin_tablet=\"||-11px||false|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:44:07','2022-07-06 00:44:07','',85,'https://flaphotography.com/?p=1554',0,'revision','',0),(1553,1,'2022-07-06 00:42:12','2022-07-06 00:42:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||-45px||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"||15px||false|false\" custom_margin_phone=\"||2px||false|false\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" title_text=\"IMG_4544-1-CNJ-ITS-TIME-2500pxCP\" sticky_enabled=\"0\" heading=\"LIFESTYLE\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:42:12','2022-07-06 00:42:12','',85,'https://flaphotography.com/?p=1553',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1556,1,'2022-07-06 00:49:07','2022-07-06 00:49:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||15px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-11px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:49:07','2022-07-06 00:49:07','',85,'https://flaphotography.com/?p=1556',0,'revision','',0),(1557,1,'2022-07-06 00:50:53','2022-07-06 00:50:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||26px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-11px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:50:53','2022-07-06 00:50:53','',85,'https://flaphotography.com/?p=1557',0,'revision','',0),(1558,1,'2022-07-06 00:51:19','2022-07-06 00:51:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-11px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:51:19','2022-07-06 00:51:19','',85,'https://flaphotography.com/?p=1558',0,'revision','',0),(1559,1,'2022-07-06 00:52:22','2022-07-06 00:52:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-06 00:52:22','2022-07-06 00:52:22','',85,'https://flaphotography.com/?p=1559',0,'revision','',0),(1599,1,'2022-07-18 02:01:27','2022-07-18 02:01:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" background_last_edited=\"on|phone\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$399 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-18 02:01:27','2022-07-18 02:01:27','',61,'https://flaphotography.com/?p=1599',0,'revision','',0),(1562,1,'2022-07-06 01:11:07','2022-07-06 01:11:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" background_last_edited=\"on|phone\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$399 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-06 01:11:07','2022-07-06 01:11:07','',61,'https://flaphotography.com/?p=1562',0,'revision','',0),(1567,1,'2022-07-09 04:45:42','2022-07-09 04:45:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,673,1565,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-09 04:45:42','2022-07-09 04:45:42','',9,'https://flaphotography.com/?p=1567',0,'revision','',0),(1566,1,'2022-07-09 04:43:47','2022-07-09 04:43:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,673,1565,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-09 04:43:47','2022-07-09 04:43:47','',9,'https://flaphotography.com/?p=1566',0,'revision','',0),(1561,1,'2022-07-06 01:04:10','2022-07-06 01:04:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1305,673,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-06 01:04:10','2022-07-06 01:04:10','',9,'https://flaphotography.com/?p=1561',0,'revision','',0),(1563,1,'2022-07-09 04:38:20','2022-07-09 04:38:20','','','','inherit','open','closed','','q-straight-smile-img_4145-2500px-cp','','','2022-07-12 15:25:53','2022-07-12 15:25:53','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg',0,'attachment','image/jpeg',0),(1564,1,'2022-07-09 04:41:31','2022-07-09 04:41:31','','','','inherit','open','closed','','q-straight-smile-img_4145-1500px','','','2022-07-12 15:25:50','2022-07-12 15:25:50','',9,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg',0,'attachment','image/jpeg',0),(1565,1,'2022-07-09 04:42:14','2022-07-09 04:42:14','','','','inherit','open','closed','','q-straight-smile-img_4145-1500px-2','','','2022-07-12 15:25:48','2022-07-12 15:25:48','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg',0,'attachment','image/jpeg',0),(1569,1,'2022-07-10 00:57:34','2022-07-10 00:57:34','','','','inherit','open','closed','','q-black-img_4144-hopepage-2500px-cp','','','2022-07-12 15:26:13','2022-07-12 15:26:13','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg',0,'attachment','image/jpeg',0),(1579,1,'2022-07-12 15:40:09','2022-07-12 15:40:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" hover_enabled=\"0\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-12 15:40:09','2022-07-12 15:40:09','',85,'https://flaphotography.com/?p=1579',0,'revision','',0),(1570,1,'2022-07-10 00:57:58','2022-07-10 00:57:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" hover_enabled=\"0\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\" title_text=\"Q-BLACK-IMG_4144-HopePage-2500px CP\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-10 00:57:58','2022-07-10 00:57:58','',85,'https://flaphotography.com/?p=1570',0,'revision','',0),(1576,1,'2022-07-11 15:39:26','2022-07-11 15:39:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1565,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-11 15:39:26','2022-07-11 15:39:26','',9,'https://flaphotography.com/?p=1576',0,'revision','',0),(1575,1,'2022-07-11 15:38:14','2022-07-11 15:38:14','','','','inherit','open','closed','','q-black-img_4144-1500px-wide','','','2022-07-12 15:26:15','2022-07-12 15:26:15','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE.jpg',0,'attachment','image/jpeg',0),(1574,1,'2022-07-10 01:03:32','2022-07-10 01:03:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,673,1565,1063,1062,1573\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-10 01:03:32','2022-07-10 01:03:32','',9,'https://flaphotography.com/?p=1574',0,'revision','',0),(1577,1,'2022-07-11 21:44:53','2022-07-11 21:44:53','','','','inherit','open','closed','','q-straight-smile-img-4145-1500px2','','','2022-07-12 15:26:18','2022-07-12 15:26:18','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg',0,'attachment','image/jpeg',0),(1578,1,'2022-07-11 21:45:26','2022-07-11 21:45:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1538,1539\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.4\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/flaphotography_flapstart\" _builder_version=\"4.16\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-11 21:45:26','2022-07-11 21:45:26','',9,'https://flaphotography.com/?p=1578',0,'revision','',0),(1627,1,'2022-07-31 01:22:01','2022-07-31 01:22:01','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 01:22:01','2022-07-31 01:22:01','',367,'https://flaphotography.com/?p=1627',0,'revision','',0),(1581,1,'2022-07-15 13:19:13','2022-07-15 13:19:13','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" hover_enabled=\"0\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\" sticky_enabled=\"0\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-15 13:19:13','2022-07-15 13:19:13','',367,'https://flaphotography.com/?p=1581',0,'revision','',0),(1582,1,'2022-07-15 13:19:15','2022-07-15 13:19:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" hover_enabled=\"0\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\" sticky_enabled=\"0\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-15 13:19:15','2022-07-15 13:19:15','',85,'https://flaphotography.com/?p=1582',0,'revision','',0),(1583,1,'2022-07-18 00:19:21','2022-07-18 00:19:21','','','','inherit','open','closed','','marvelous-smile-img_0854-1500px','','','2022-08-13 03:46:20','2022-08-13 03:46:20','',0,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg',0,'attachment','image/jpeg',0),(1584,1,'2022-07-18 00:19:26','2022-07-18 00:19:26','','','','inherit','open','closed','','marvelous-garden-img_0821-1500px','','','2022-07-18 01:27:07','2022-07-18 01:27:07','',0,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg',0,'attachment','image/jpeg',0),(1585,1,'2022-07-18 00:19:31','2022-07-18 00:19:31','','','','inherit','open','closed','','marvelous-seat-img_0735-1500px2','','','2022-07-18 01:27:04','2022-07-18 01:27:04','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg',0,'attachment','image/jpeg',0),(1586,1,'2022-07-18 00:20:33','2022-07-18 00:20:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 00:20:33','2022-07-18 00:20:33','',9,'https://flaphotography.com/?p=1586',0,'revision','',0),(1662,1,'2022-07-31 02:40:28','2022-07-31 02:40:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\" global_module=\"1659\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" global_module=\"1660\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-31 02:40:28','2022-07-31 02:40:28','',9,'https://flaphotography.com/?p=1662',0,'revision','',0),(1588,1,'2022-07-18 00:29:24','2022-07-18 00:29:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-16-9\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 00:29:24','2022-07-18 00:29:24','',9,'https://flaphotography.com/?p=1588',0,'revision','',0),(1590,1,'2022-07-18 00:32:50','2022-07-18 00:32:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||196px||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-16-9\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 00:32:50','2022-07-18 00:32:50','',9,'https://flaphotography.com/?p=1590',0,'revision','',0),(1592,1,'2022-07-18 01:18:19','2022-07-18 01:18:19','','','','inherit','open','closed','','marvelous-arc-img_0865-1500px3','','','2022-07-18 01:27:01','2022-07-18 01:27:01','',0,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg',0,'attachment','image/jpeg',0),(1597,1,'2022-07-18 01:46:15','2022-07-18 01:46:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin=\"||196px||false|false\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 01:46:15','2022-07-18 01:46:15','',9,'https://flaphotography.com/?p=1597',0,'revision','',0),(1595,1,'2022-07-18 01:21:54','2022-07-18 01:21:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||196px||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-16-9\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 01:21:54','2022-07-18 01:21:54','',9,'https://flaphotography.com/?p=1595',0,'revision','',0),(1594,1,'2022-07-18 01:19:28','2022-07-18 01:19:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||196px||false|false\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-16-9\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $60 to $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 01:19:28','2022-07-18 01:19:28','',9,'https://flaphotography.com/?p=1594',0,'revision','',0),(1598,1,'2022-07-18 01:48:49','2022-07-18 01:48:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-18 01:48:49','2022-07-18 01:48:49','',9,'https://flaphotography.com/?p=1598',0,'revision','',0),(1600,1,'2022-07-19 16:37:56','2022-07-19 16:37:56','','','','inherit','open','closed','','black-hoodie9441-1500px','','','2022-07-19 16:38:47','2022-07-19 16:38:47','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg',0,'attachment','image/jpeg',0),(1601,1,'2022-07-19 16:38:01','2022-07-19 16:38:01','','','','inherit','open','closed','','black-shirt-9452-1500px','','','2022-07-19 16:38:43','2022-07-19 16:38:43','',0,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg',0,'attachment','image/jpeg',0),(1602,1,'2022-07-19 16:38:06','2022-07-19 16:38:06','','','','inherit','open','closed','','blue-shirt-img_9427-1500px','','','2022-07-19 16:38:41','2022-07-19 16:38:41','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg',0,'attachment','image/jpeg',0),(1603,1,'2022-07-19 16:38:11','2022-07-19 16:38:11','','','','inherit','open','closed','','sweater-9435-1500px','','','2022-07-19 16:38:39','2022-07-19 16:38:39','',0,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg',0,'attachment','image/jpeg',0),(1607,1,'2022-07-19 16:42:35','2022-07-19 16:42:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SKIN CARE - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.16\" _module_preset=\"default\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1600,1601,1602,1603\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-07-19 16:42:35','2022-07-19 16:42:35','',1188,'https://flaphotography.com/?p=1607',0,'revision','',0),(1606,1,'2022-07-19 16:39:43','2022-07-19 16:39:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>SKIN CARE - CLIENT -  KLEAN DEW</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1600,1601,1602,1603\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-07-19 16:39:43','2022-07-19 16:39:43','',1188,'https://flaphotography.com/?p=1606',0,'revision','',0),(1608,1,'2022-07-21 14:31:47','2022-07-21 14:31:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_padding=\"0px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"||4px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#000000\" text_font_size=\"24px\" text_letter_spacing=\"4px\" text_line_height=\"1.5em\" text_orientation=\"center\" text_font_size_tablet=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>PRODUCTS PHOTOGRAPHY</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"12px||14px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>SKIN CARE CLIENT</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1198,1177,1204,1201,1203,1200,1212,1199\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.16\" _module_preset=\"default\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"12px||6px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Open Sans|300|||||||\" text_text_color=\"#000000\" text_font_size=\"18px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>APPAREL CLIENT</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" max_width=\"1268px\" max_width_tablet=\"1268px\" max_width_phone=\"1268px\" max_width_last_edited=\"on|phone\" custom_padding=\"7px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1600,1601,1602,1603\" posts_number=\"8\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" pagination_text_color_tablet=\"\" pagination_text_color_phone=\"#000000\" pagination_text_color_last_edited=\"on|phone\" border_width_all_image=\"1px\" border_color_all_image=\"#000000\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','PRODUCTS PHOTOGRAPHY','','inherit','closed','closed','','1188-revision-v1','','','2022-07-21 14:31:47','2022-07-21 14:31:47','',1188,'https://flaphotography.com/?p=1608',0,'revision','',0),(1610,1,'2022-07-29 13:39:29','2022-07-29 13:39:29','','','','inherit','open','closed','','idras-fly-img_1443-1500px','','','2022-07-29 17:41:13','2022-07-29 17:41:13','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg',0,'attachment','image/jpeg',0),(1611,1,'2022-07-29 13:39:36','2022-07-29 13:39:36','','','','inherit','open','closed','','idras-sucess-img_1420-1500px2','','','2022-07-29 13:39:53','2022-07-29 13:39:53','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp1j_posts` VALUES (1616,1,'2022-07-29 17:41:58','2022-07-29 17:41:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-29 17:41:58','2022-07-29 17:41:58','',9,'https://flaphotography.com/?p=1616',0,'revision','',0),(1612,1,'2022-07-29 13:40:42','2022-07-29 13:40:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1610,1611\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-29 13:40:42','2022-07-29 13:40:42','',9,'https://flaphotography.com/?p=1612',0,'revision','',0),(1614,1,'2022-07-29 17:41:04','2022-07-29 17:41:04','','','','inherit','open','closed','','idras-present-img_1414-1500px','','','2022-07-30 01:15:12','2022-07-30 01:15:12','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg',0,'attachment','image/jpeg',0),(1735,1,'2022-08-05 19:54:13','2022-08-05 19:54:13','','Studio Set Francine Cocoa Red-FINAL','','inherit','open','closed','','studio-set-francine-cocoa-red-final','','','2022-08-05 19:54:13','2022-08-05 19:54:13','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4',0,'attachment','video/mp4',0),(1617,1,'2022-07-30 00:15:59','2022-07-30 00:15:59','','','','inherit','open','closed','','idras-walk-img_1466-1500px','','','2022-07-30 00:16:44','2022-07-30 00:16:44','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg',0,'attachment','image/jpeg',0),(1619,1,'2022-07-30 00:16:52','2022-07-30 00:16:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"20px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION & MODELING SESSIONS\" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"16px\" button_text_size_phone=\"14px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-30 00:16:52','2022-07-30 00:16:52','',9,'https://flaphotography.com/?p=1619',0,'revision','',0),(1629,1,'2022-07-31 01:23:36','2022-07-31 01:23:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\" custom_padding=\"9px||17px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial||||||||\" text_orientation=\"center\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_text_color=\"#FFFFFF\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"15px\" text_font_size_tablet=\"18px\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 01:23:36','2022-07-31 01:23:36','',85,'https://flaphotography.com/?p=1629',0,'revision','',0),(1626,1,'2022-07-31 00:57:43','2022-07-31 00:57:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL.mp4\" custom_margin=\"||0px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||25px||false|false\" custom_margin_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_video_mp4=\"off\" min_height=\"770.9px\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||146px||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_slide _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL.mp4\" background_enable_video_mp4=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_transition=\"on\" sticky_enabled=\"0\" title_text=\"Studio Cocoa Set-Idras-FINAL\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 00:57:43','2022-07-31 00:57:43','',85,'https://flaphotography.com/?p=1626',0,'revision','',0),(1624,1,'2022-07-31 00:54:43','2022-07-31 00:54:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin=\"||0px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||25px||false|false\" custom_margin_last_edited=\"on|tablet\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Studio Cocoa Set-Idras-FINAL\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL.mp4\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.6\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||146px||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Cocoa Set-Idras-FINAL\" sticky_enabled=\"0\" background_enable_video_mp4=\"off\" min_height=\"690.9px\"][et_pb_slide _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Studio Cocoa Set-Idras-FINAL\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL.mp4\" background_enable_video_mp4=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.17.4\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_margin=\"|-53px||-53px|false|true\" custom_margin_tablet=\"|-53px||-53px|false|true\" custom_margin_phone=\"|-53px||-53px|false|true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"11px||59px||false|false\" custom_padding_tablet=\"11px||59px||false|false\" custom_padding_phone=\"11px||59px||false|false\" custom_padding_last_edited=\"on|phone\" title_font_size_tablet=\"20px\" title_font_size_phone=\"13px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 00:54:43','2022-07-31 00:54:43','',85,'https://flaphotography.com/?p=1624',0,'revision','',0),(1631,1,'2022-07-31 01:24:21','2022-07-31 01:24:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\" custom_padding=\"9px||17px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial||||||||\" text_orientation=\"center\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_text_color=\"#FFFFFF\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"15px\" text_font_size_tablet=\"18px\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 01:24:21','2022-07-31 01:24:21','',85,'https://flaphotography.com/?p=1631',0,'revision','',0),(1634,1,'2022-07-31 01:27:05','2022-07-31 01:27:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\" custom_padding=\"9px||17px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial||||||||\" text_orientation=\"center\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_text_color=\"#FFFFFF\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"15px\" text_font_size_tablet=\"18px\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" title_text=\"Studio Cocoa Set-Idras-FINAL-NO Sound\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL-NO-Sound.mp4\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 01:27:05','2022-07-31 01:27:05','',85,'https://flaphotography.com/?p=1634',0,'revision','',0),(1641,1,'2022-07-31 02:01:50','2022-07-31 02:01:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:01:50','2022-07-31 02:01:50','',85,'https://flaphotography.com/?p=1641',0,'revision','',0),(1639,1,'2022-07-31 01:41:34','2022-07-31 01:41:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL-NO-Sound2.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Cocoa Set-Idras-FINAL-NO Sound2\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 01:41:34','2022-07-31 01:41:34','',85,'https://flaphotography.com/?p=1639',0,'revision','',0),(1636,1,'2022-07-31 01:27:54','2022-07-31 01:27:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" background_enable_color=\"off\" title_text=\"Studio Cocoa Set-Idras-FINAL-NO Sound\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Cocoa-Set-Idras-FINAL-NO-Sound.mp4\" hover_enabled=\"0\" sticky_enabled=\"0\" min_height=\"844px\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_color=\"#000000\" custom_padding=\"9px||17px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_font=\"Arial||||||||\" text_orientation=\"center\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_text_color=\"#FFFFFF\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"15px\" text_font_size_tablet=\"18px\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 01:27:54','2022-07-31 01:27:54','',85,'https://flaphotography.com/?p=1636',0,'revision','',0),(1647,1,'2022-07-31 02:10:31','2022-07-31 02:10:31','','Auto Draft','','inherit','closed','closed','','1646-revision-v1','','','2022-07-31 02:10:31','2022-07-31 02:10:31','',1646,'https://flaphotography.com/?p=1647',0,'revision','',0),(1649,1,'2022-07-31 02:13:24','2022-07-31 02:13:24','','','','inherit','open','closed','','img_4526-1-look-final-2000px','','','2022-08-01 06:25:32','2022-08-01 06:25:32','',0,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg',0,'attachment','image/jpeg',0),(1650,1,'2022-07-31 02:14:28','2022-07-31 02:14:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" theme_builder_area=\"post_content\"]<h1><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - ENDS DEC 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Auto Draft','','inherit','closed','closed','','1646-revision-v1','','','2022-07-31 02:14:28','2022-07-31 02:14:28','',1646,'https://flaphotography.com/?p=1650',0,'revision','',0),(1651,1,'2022-07-31 02:16:01','2022-07-31 02:16:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" disabled_on=\"on|off|off\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#000000\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"video-autoplay\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:16:01','2022-07-31 02:16:01','',85,'https://flaphotography.com/?p=1651',0,'revision','',0),(1643,1,'2022-07-31 02:05:39','2022-07-31 02:05:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"0px||0px|||\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:05:39','2022-07-31 02:05:39','',85,'https://flaphotography.com/?p=1643',0,'revision','',0),(1646,1,'2022-07-31 02:14:28','2022-07-31 02:14:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"0px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"CORPORATE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\" link_option_url=\"https://flaphotography.com/couples-family-sessions/\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/couples-family-sessions/\" button_text=\"COUPLES\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.16\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"154deg\" background_color_gradient_stops=\"#8f8f8f 41%|#000000 41%\" background_color_gradient_start=\"#8f8f8f\" background_color_gradient_start_position=\"41%\" background_color_gradient_end=\"#000000\" background_color_gradient_end_position=\"41%\" background_enable_image=\"off\" custom_margin=\"42px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-90px|2px|-94px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row admin_label=\"Video\" _builder_version=\"4.16\" transform_scale=\"76%|76%\" custom_margin=\"||||false|false\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" link_font=\"Arial||||||||\" link_text_color=\"#FFFFFF\" link_font_size=\"34px\" link_letter_spacing=\"2px\" link_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"40px\" header_letter_spacing=\"6px\" header_line_height=\"1.3em\" custom_padding=\"12px||||false|false\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" link_text_color__hover_enabled=\"on|hover\" link_text_color__hover=\"#D6D6D6\" theme_builder_area=\"post_content\"]<h1><a href=\"https://flaphotography.com/promotion/\">BIG 20% OFF - ENDS DEC 30</a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#D6D6D6\" custom_padding=\"21px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2021/12/HUGE-20-OFF-PROMO-FINAL.mp4\" play_icon_color=\"#000000\" use_icon_font_size=\"on\" icon_font_size=\"93px\" module_class=\"video-autoplay\" _builder_version=\"4.16\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_fullwidth_header title=\"POST PRODUCTION SERVICES \" text_orientation=\"center\" background_overlay_color=\"rgba(0,0,0,0)\" _builder_version=\"4.16\" title_font=\"Arial||||||||\" title_font_size=\"20px\" title_letter_spacing=\"8px\" title_line_height=\"1.3em\" content_font_size=\"19px\" background_color=\"#000000\" background_enable_image=\"off\" custom_padding=\"11px||60px||false|false\" title_font_size_tablet=\"20px\" title_font_size_phone=\"17px\" title_font_size_last_edited=\"on|tablet\" border_color_all_image=\"#e02b20\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"-54px|||||\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.16\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\" theme_builder_area=\"post_content\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\" theme_builder_area=\"post_content\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><span>Copyright © 2021 - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Auto Draft','','publish','closed','closed','','auto-draft','','','2022-07-31 02:14:32','2022-07-31 02:14:32','',0,'https://flaphotography.com/?page_id=1646',0,'page','',0),(1645,1,'2022-07-31 02:09:23','2022-07-31 02:09:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:09:23','2022-07-31 02:09:23','',85,'https://flaphotography.com/?p=1645',0,'revision','',0),(1653,1,'2022-07-31 02:20:27','2022-07-31 02:20:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:20:27','2022-07-31 02:20:27','',85,'https://flaphotography.com/?p=1653',0,'revision','',0),(1652,1,'2022-07-31 02:17:34','2022-07-31 02:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" disabled_on=\"on|off|off\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#000000\" sticky_enabled=\"0\" disabled_on=\"off|on|on\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" module_class=\"video-autoplay\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"9px||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:17:34','2022-07-31 02:17:34','',85,'https://flaphotography.com/?p=1652',0,'revision','',0),(1656,1,'2022-07-31 02:25:31','2022-07-31 02:25:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:25:31','2022-07-31 02:25:31','',85,'https://flaphotography.com/?p=1656',0,'revision','',0),(1654,1,'2022-07-31 02:21:03','2022-07-31 02:21:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:21:03','2022-07-31 02:21:03','',85,'https://flaphotography.com/?p=1654',0,'revision','',0),(1657,1,'2022-07-31 02:28:56','2022-07-31 02:28:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"16px||19px||false|false\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:28:56','2022-07-31 02:28:56','',85,'https://flaphotography.com/?p=1657',0,'revision','',0),(1658,1,'2022-07-31 02:30:40','2022-07-31 02:30:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"99%\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" hover_enabled=\"0\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"16px||19px||false|false\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:30:40','2022-07-31 02:30:40','',85,'https://flaphotography.com/?p=1658',0,'revision','',0),(1659,1,'2022-07-31 02:35:21','2022-07-31 02:35:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Studio Set Video-Section','','publish','closed','closed','','studio-set-video-section','','','2022-08-05 19:54:29','2022-08-05 19:54:29','',0,'https://flaphotography.com/et_pb_layout/studio-set-video-section/',0,'et_pb_layout','',0),(1660,1,'2022-07-31 02:36:04','2022-07-31 02:36:04','[et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Studio Set Video-Mobile','','publish','closed','closed','','studio-set-video-mobile','','','2022-08-05 19:54:51','2022-08-05 19:54:51','',0,'https://flaphotography.com/et_pb_layout/studio-set-video-mobile/',0,'et_pb_layout','',0),(1661,1,'2022-07-31 02:36:12','2022-07-31 02:36:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\" global_module=\"1659\" saved_tabs=\"all\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" global_module=\"1660\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#a8a8a8\" text_letter_spacing=\"2px\" text_line_height=\"1.3em\" background_color=\"#000000\" text_orientation=\"center\" custom_padding=\"2px||2px||true|false\" global_colors_info=\"{}\"]<p><span>Copyright © 2021 - FlapStart - Flap Photography - All Rights Reserved</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 02:36:12','2022-07-31 02:36:12','',85,'https://flaphotography.com/?p=1661',0,'revision','',0),(1663,1,'2022-07-31 02:48:05','2022-07-31 02:48:05','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 02:48:05','2022-07-31 02:48:05','',367,'https://flaphotography.com/?p=1663',0,'revision','',0),(1664,1,'2022-07-31 02:50:09','2022-07-31 02:50:09','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 02:50:09','2022-07-31 02:50:09','',367,'https://flaphotography.com/?p=1664',0,'revision','',0),(1665,1,'2022-07-31 02:50:14','2022-07-31 02:50:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-31 02:50:14','2022-07-31 02:50:14','',9,'https://flaphotography.com/?p=1665',0,'revision','',0),(1666,1,'2022-07-31 02:50:29','2022-07-31 02:50:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section]','Studio Set Video-Section','','inherit','closed','closed','','1659-revision-v1','','','2022-07-31 02:50:29','2022-07-31 02:50:29','',1659,'https://flaphotography.com/?p=1666',0,'revision','',0),(1667,1,'2022-07-31 02:50:33','2022-07-31 02:50:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-31 02:50:33','2022-07-31 02:50:33','',9,'https://flaphotography.com/?p=1667',0,'revision','',0),(1668,1,'2022-07-31 02:53:40','2022-07-31 02:53:40','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 02:53:40','2022-07-31 02:53:40','',367,'https://flaphotography.com/?p=1668',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1669,1,'2022-07-31 02:53:44','2022-07-31 02:53:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.9.7\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding_tablet=\"|||14px|false|false\" custom_padding_phone=\"|||14px|false|false\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-31 02:53:44','2022-07-31 02:53:44','',9,'https://flaphotography.com/?p=1669',0,'revision','',0),(1671,1,'2022-07-31 02:56:23','2022-07-31 02:56:23','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 02:56:23','2022-07-31 02:56:23','',367,'https://flaphotography.com/?p=1671',0,'revision','',0),(1672,1,'2022-07-31 02:56:28','2022-07-31 02:56:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding_tablet=\"|||14px|false|false\" custom_padding_phone=\"|||14px|false|false\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" _builder_version=\"4.17.6\" _module_preset=\"default\" title_text=\"Studio Set Combined-Red Cocoa-Idras-FINAL\" hover_enabled=\"0\" sticky_enabled=\"0\" module_class=\"video-autoplay\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-07-31 02:56:28','2022-07-31 02:56:28','',9,'https://flaphotography.com/?p=1672',0,'revision','',0),(1673,1,'2022-07-31 03:04:39','2022-07-31 03:04:39','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-60px||-60px|false|true\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:04:39','2022-07-31 03:04:39','',367,'https://flaphotography.com/?p=1673',0,'revision','',0),(1674,1,'2022-07-31 03:05:24','2022-07-31 03:05:24','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-29px||-29px|false|true\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:05:24','2022-07-31 03:05:24','',367,'https://flaphotography.com/?p=1674',0,'revision','',0),(1682,1,'2022-07-31 03:15:33','2022-07-31 03:15:33','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:15:33','2022-07-31 03:15:33','',367,'https://flaphotography.com/?p=1682',0,'revision','',0),(1675,1,'2022-07-31 03:06:17','2022-07-31 03:06:17','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-29px||-29px|false|true\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|-49px||-49px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|||-34px|false|false\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:06:17','2022-07-31 03:06:17','',367,'https://flaphotography.com/?p=1675',0,'revision','',0),(1676,1,'2022-07-31 03:06:26','2022-07-31 03:06:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#D6D6D6\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"181deg\" background_color_gradient_stops=\"rgba(8,26,142,0.66) 31%|rgba(21,79,155,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" parallax=\"on\" background_blend=\"multiply\" background_last_edited=\"on|tablet\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#D6D6D6\" header_font_size=\"20px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"18px\" header_font_size_phone=\"14px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>FASHION &amp; MODELING SESSIONS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\" title_text=\"Marvelous-Fashion-2-IMG_9010-900px\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_right=\"1px\" border_color_right=\"#cecece\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" title_text=\"Flow-presence_MG_8542-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\" title_text=\"IMG_5248-1-5000PX -CROP\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\" title_text=\"Marvelous-Sky_MG_8543-1-FQ-2000PX\" show_in_lightbox=\"on\" _builder_version=\"4.17.4\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" animation_duration=\"1750ms\" border_width_left=\"1px\" border_color_left=\"#c9c9c9\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|-1px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||6px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\" title_text=\"NOELLE_5330-1-6000px72-3000PX\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\" title_text=\"Ruben-IMG_5250-1-2500PX-CP\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\" title_text=\"IMG_5311-1-3000PXC3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\" title_text=\"Noelle-Headshot-IMG_5345-2500PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" _module_preset=\"default\" custom_margin=\"||6px|||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"rgba(214,214,214,0.52)\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,0,0,0.34) 0%|#b7b7b7 100%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\" parallax=\"on\" background_last_edited=\"on|phone\" background_image_tablet=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\" background_enable_image_tablet=\"on\" background_enable_image_phone=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.16\" max_width=\"1759px\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|phone\" custom_margin=\"|auto|24px|auto||\" custom_margin_tablet=\"\" custom_margin_phone=\"|auto|0px|auto|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||0px||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\" title_text=\"Young-x-face-IMG_0002_1-No-title-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\" title_text=\"ASH-GAZE-IMG_0003_3-900PX3\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\" title_text=\"The-set-ash-sitting-IMG_0001_4-3000px\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\" title_text=\"Young-X-Madness-IMG_0016-3000px (2)\" show_in_lightbox=\"on\" _builder_version=\"4.16\" width=\"100%\" max_width=\"100%\" max_height=\"1000px\" custom_margin=\"8px||5px|||\" custom_padding=\"|||0px||\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\" title_text=\"ASH-The-Queen-IMG_0008_-3000pXRNW2\" _builder_version=\"4.17.4\" _module_preset=\"default\" animation_style=\"fold\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"326deg\" background_color_gradient_stops=\"rgba(0,0,0,0.48) 0%|rgba(170,170,170,0.78) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.48)\" background_color_gradient_end=\"rgba(170,170,170,0.78)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$299 / 5</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"5 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1.5 hours session, 2 outfits, 2 Backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1137\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#000000\" button_bg_color=\"rgba(255,255,255,0.41)\" button_font=\"Arial|600|||||||\" custom_margin=\"0px||19px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$399 / 10</h1>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#E02B20\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2.5  hours session, 4 outfits, 4 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\" On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#FFFFFF\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"rgba(0,0,0,0.7)\" background_layout=\"dark\" custom_padding=\"6px|6px|6px|6px|true|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" _module_preset=\"default\" background_color=\"#474747\" custom_padding=\"6px||2px|||\" global_colors_info=\"{}\"][et_pb_row custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"|200px||200px|false|true\" custom_padding_tablet=\"|0px||0px|false|true\" custom_padding_phone=\"|0px||0px|false|true\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"18px\" ul_font=\"Arial||||||||\" ul_text_color=\"#FFFFFF\" ul_font_size=\"18px\" ul_letter_spacing=\"2px\" ul_line_height=\"1.3em\" header_font=\"Arial|600|||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"20px\" header_letter_spacing=\"4px\" header_line_height=\"1.2em\" header_font_size_tablet=\"18px\" header_font_size_phone=\"15px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>ADDITIONAL RETOUCHING</h1>\n<ul>\n<li>Outfit color change, $29 / image. <o:p></o:p></li>\n<li>Lipstick and finger nails color change (including toes), $29 / image.<o:p></o:p></li>\n<li>Outfit + Lipstick + Finger Nails color change, $39.00 / image.<o:p></o:p></li>\n<li>Background color change, $29 / image.<o:p></o:p></li>\n<li>Background replacement for a different scene, $45 / image.<o:p></o:p></li>\n<li>Facial dodging and burning, $19 / image.<o:p></o:p></li>\n</ul>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate/\" button_text=\"CORPORATE & ARTISTS  SESSIONS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" button_font=\"Arial||||||||\" button_text_size_tablet=\"18px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|tablet\" global_colors_info=\"{}\" button_border_color__hover_enabled=\"on|hover\" button_border_color__hover=\"#d53c22\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|-29px||-29px|false|true\" sticky_enabled=\"0\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|-49px||-49px|false|true\" sticky_enabled=\"0\" custom_margin_tablet=\"|||-34px|false|false\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FASHION & MODELING SESSIONS','','inherit','closed','closed','','61-revision-v1','','','2022-07-31 03:06:26','2022-07-31 03:06:26','',61,'https://flaphotography.com/?p=1676',0,'revision','',0),(1677,1,'2022-07-31 03:09:34','2022-07-31 03:09:34','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:09:34','2022-07-31 03:09:34','',367,'https://flaphotography.com/?p=1677',0,'revision','',0),(1678,1,'2022-07-31 03:09:38','2022-07-31 03:09:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 03:09:38','2022-07-31 03:09:38','',85,'https://flaphotography.com/?p=1678',0,'revision','',0),(1681,1,'2022-07-31 03:15:25','2022-07-31 03:15:25','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:15:25','2022-07-31 03:15:25','',367,'https://flaphotography.com/?p=1681',0,'revision','',0),(1679,1,'2022-07-31 03:10:49','2022-07-31 03:10:49','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:10:49','2022-07-31 03:10:49','',367,'https://flaphotography.com/?p=1679',0,'revision','',0),(1680,1,'2022-07-31 03:10:52','2022-07-31 03:10:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" hover_enabled=\"0\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-07-31 03:10:52','2022-07-31 03:10:52','',85,'https://flaphotography.com/?p=1680',0,'revision','',0),(1684,1,'2022-07-31 03:17:40','2022-07-31 03:17:40','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:17:40','2022-07-31 03:17:40','',367,'https://flaphotography.com/?p=1684',0,'revision','',0),(1683,1,'2022-07-31 03:15:37','2022-07-31 03:15:37','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:15:37','2022-07-31 03:15:37','',367,'https://flaphotography.com/?p=1683',0,'revision','',0),(1686,1,'2022-07-31 03:17:50','2022-07-31 03:17:50','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:17:50','2022-07-31 03:17:50','',367,'https://flaphotography.com/?p=1686',0,'revision','',0),(1685,1,'2022-07-31 03:17:41','2022-07-31 03:17:41','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:17:41','2022-07-31 03:17:41','',367,'https://flaphotography.com/?p=1685',0,'revision','',0),(1687,1,'2022-07-31 03:17:54','2022-07-31 03:17:54','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" hover_enabled=\"0\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-07-31 03:17:54','2022-07-31 03:17:54','',367,'https://flaphotography.com/?p=1687',0,'revision','',0),(1731,1,'2022-08-05 19:34:03','2022-08-05 19:34:03','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-08-05 19:34:03','2022-08-05 19:34:03','',367,'https://flaphotography.com/?p=1731',0,'revision','',0),(1692,1,'2022-08-01 03:37:02','2022-08-01 03:37:02','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set-Combined Cocoa Red-Final-STL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-08-01 03:37:02','2022-08-01 03:37:02','',367,'https://flaphotography.com/?p=1692',0,'revision','',0),(1693,1,'2022-08-01 03:37:04','2022-08-01 03:37:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set-Combined Cocoa Red-Final-STL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set-Combined Cocoa Red-Final-STL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-08-01 03:37:04','2022-08-01 03:37:04','',85,'https://flaphotography.com/?p=1693',0,'revision','',0),(1690,1,'2022-08-01 03:35:50','2022-08-01 03:35:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set-Combined Cocoa Red-Final-STL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Studio Set Video-Section','','inherit','closed','closed','','1659-revision-v1','','','2022-08-01 03:35:50','2022-08-01 03:35:50','',1659,'https://flaphotography.com/?p=1690',0,'revision','',0),(1691,1,'2022-08-01 03:36:26','2022-08-01 03:36:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set-Combined Cocoa Red-Final-STL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-08-01 03:36:26','2022-08-01 03:36:26','',85,'https://flaphotography.com/?p=1691',0,'revision','',0),(1695,1,'2022-08-01 05:58:21','2022-08-01 05:58:21','','','','inherit','open','closed','','francine-cocoa-laugh-img_1538-1500px','','','2022-08-01 05:58:56','2022-08-01 05:58:56','',0,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg',0,'attachment','image/jpeg',0),(1696,1,'2022-08-01 05:58:29','2022-08-01 05:58:29','','','','inherit','open','closed','','francine-cocoa-sharp-img_1536-1500px','','','2022-08-01 05:58:54','2022-08-01 05:58:54','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg',0,'attachment','image/jpeg',0),(1697,1,'2022-08-01 06:00:09','2022-08-01 06:00:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620,1695,1696\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-01 06:00:09','2022-08-01 06:00:09','',9,'https://flaphotography.com/?p=1697',0,'revision','',0),(1698,1,'2022-08-01 06:01:05','2022-08-01 06:01:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1620,1696,1695\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-01 06:01:05','2022-08-01 06:01:05','',9,'https://flaphotography.com/?p=1698',0,'revision','',0),(1699,1,'2022-08-01 06:25:04','2022-08-01 06:25:04','','','','inherit','open','closed','','idras-style-img_1464-1500px','','','2022-08-01 06:25:23','2022-08-01 06:25:23','',0,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg',0,'attachment','image/jpeg',0),(1700,1,'2022-08-01 06:26:42','2022-08-01 06:26:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-01 06:26:42','2022-08-01 06:26:42','',9,'https://flaphotography.com/?p=1700',0,'revision','',0),(1716,1,'2022-08-05 14:39:11','2022-08-05 14:39:11','','','','inherit','open','closed','','marvelous-move-reease-img_0658-1500px6','','','2022-08-05 15:14:11','2022-08-05 15:14:11','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg',0,'attachment','image/jpeg',0),(1726,1,'2022-08-05 15:36:30','2022-08-05 15:36:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 15:36:30','2022-08-05 15:36:30','',9,'https://flaphotography.com/?p=1726',0,'revision','',0),(1717,1,'2022-08-05 14:39:19','2022-08-05 14:39:19','','','','inherit','open','closed','','marvelous-triangle-release-img_0650-1500px6','','','2022-08-05 15:14:09','2022-08-05 15:14:09','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg',0,'attachment','image/jpeg',0),(1703,1,'2022-08-03 23:01:33','2022-08-03 23:01:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1701,1702\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-03 23:01:33','2022-08-03 23:01:33','',9,'https://flaphotography.com/?p=1703',0,'revision','',0),(1720,1,'2022-08-05 15:13:21','2022-08-05 15:13:21','','','','inherit','open','closed','','marvelous-moment-headshot-release-img_0688-1500px2','','','2022-08-05 15:13:38','2022-08-05 15:13:38','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg',0,'attachment','image/jpeg',0),(1705,1,'2022-08-04 03:11:40','2022-08-04 03:11:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1701,1702,1704\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-04 03:11:40','2022-08-04 03:11:40','',9,'https://flaphotography.com/?p=1705',0,'revision','',0),(1711,1,'2022-08-04 03:34:10','2022-08-04 03:34:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1701,1702,1704,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-04 03:34:10','2022-08-04 03:34:10','',9,'https://flaphotography.com/?p=1711',0,'revision','',0),(1710,1,'2022-08-04 03:33:50','2022-08-04 03:33:50','','','','inherit','open','closed','','francine-face-up-cocoa-img_1577-1500px','','','2022-08-04 15:43:44','2022-08-04 15:43:44','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg',0,'attachment','image/jpeg',0),(1708,1,'2022-08-04 03:31:47','2022-08-04 03:31:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1701,1702,1704,1707\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-04 03:31:47','2022-08-04 03:31:47','',9,'https://flaphotography.com/?p=1708',0,'revision','',0),(1722,1,'2022-08-05 15:17:14','2022-08-05 15:17:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1721,1720,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 15:17:14','2022-08-05 15:17:14','',9,'https://flaphotography.com/?p=1722',0,'revision','',0),(1723,1,'2022-08-05 15:35:37','2022-08-05 15:35:37','','','','inherit','open','closed','','marvelous-time-release-img_0696-1500px8','','','2022-08-05 15:35:52','2022-08-05 15:35:52','',0,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg',0,'attachment','image/jpeg',0),(1715,1,'2022-08-05 02:06:13','2022-08-05 02:06:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1713,1712,1704,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 02:06:13','2022-08-05 02:06:13','',9,'https://flaphotography.com/?p=1715',0,'revision','',0),(1719,1,'2022-08-05 14:39:52','2022-08-05 14:39:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1704,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 14:39:52','2022-08-05 14:39:52','',9,'https://flaphotography.com/?p=1719',0,'revision','',0),(1725,1,'2022-08-05 15:36:07','2022-08-05 15:36:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1723,1720,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 15:36:07','2022-08-05 15:36:07','',9,'https://flaphotography.com/?p=1725',0,'revision','',0),(1732,1,'2022-08-05 19:34:13','2022-08-05 19:34:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 19:34:13','2022-08-05 19:34:13','',9,'https://flaphotography.com/?p=1732',0,'revision','',0),(1737,1,'2022-08-05 19:54:29','2022-08-05 19:54:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Studio Set Video-Section','','inherit','closed','closed','','1659-revision-v1','','','2022-08-05 19:54:29','2022-08-05 19:54:29','',1659,'https://flaphotography.com/?p=1737',0,'revision','',0),(1729,1,'2022-08-05 19:33:36','2022-08-05 19:33:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section]','Studio Set Video-Section','','inherit','closed','closed','','1659-revision-v1','','','2022-08-05 19:33:36','2022-08-05 19:33:36','',1659,'https://flaphotography.com/?p=1729',0,'revision','',0),(1744,1,'2022-08-06 16:31:21','2022-08-06 16:31:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1743,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-06 16:31:21','2022-08-06 16:31:21','',9,'https://flaphotography.com/?p=1744',0,'revision','',0);
INSERT INTO `wp1j_posts` VALUES (1730,1,'2022-08-05 19:33:40','2022-08-05 19:33:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/07/Studio-Set-Combined-Red-Cocoa-Idras-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Combined-Cocoa-Red-Final-STL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 19:33:40','2022-08-05 19:33:40','',9,'https://flaphotography.com/?p=1730',0,'revision','',0),(1733,1,'2022-08-05 19:34:32','2022-08-05 19:34:32','[et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Studio Set Video-Mobile','','inherit','closed','closed','','1660-revision-v1','','','2022-08-05 19:34:32','2022-08-05 19:34:32','',1660,'https://flaphotography.com/?p=1733',0,'revision','',0),(1742,1,'2022-08-06 16:13:54','2022-08-06 16:13:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1741,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-06 16:13:54','2022-08-06 16:13:54','',9,'https://flaphotography.com/?p=1742',0,'revision','',0),(1734,1,'2022-08-05 19:34:39','2022-08-05 19:34:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1699,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-05 19:34:39','2022-08-05 19:34:39','',9,'https://flaphotography.com/?p=1734',0,'revision','',0),(1748,1,'2022-08-06 17:26:44','2022-08-06 17:26:44','','','','inherit','open','closed','','idras-pocket-pose-img_1476-1500px4','','','2022-08-06 17:27:04','2022-08-06 17:27:04','',0,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg',0,'attachment','image/jpeg',0),(1738,1,'2022-08-05 19:54:51','2022-08-05 19:54:51','[et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','Studio Set Video-Mobile','','inherit','closed','closed','','1660-revision-v1','','','2022-08-05 19:54:51','2022-08-05 19:54:51','',1660,'https://flaphotography.com/?p=1738',0,'revision','',0),(1739,1,'2022-08-05 19:55:04','2022-08-05 19:55:04','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" saved_tabs=\"all\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','FOOTER MAIN','','inherit','closed','closed','','367-revision-v1','','','2022-08-05 19:55:04','2022-08-05 19:55:04','',367,'https://flaphotography.com/?p=1739',0,'revision','',0),(1740,1,'2022-08-05 19:55:07','2022-08-05 19:55:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||-45px||false|false\" custom_margin_tablet=\"||34px||false|false\" custom_margin_phone=\"||28px||false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_fullwidth_slider show_arrows=\"off\" show_pagination=\"off\" _builder_version=\"4.17.4\" _module_preset=\"default\" min_height_tablet=\"520px\" min_height_phone=\"479px\" min_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"||||false|false\" custom_margin_phone=\"||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" auto=\"on\" auto_speed=\"3500\" auto_ignore_hover=\"on\" global_colors_info=\"{}\"][et_pb_slide heading=\"LIFESTYLE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|phone\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"]<p>Best of branding photography</p>[/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"CORPORATE\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"ARTISTS\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.7)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"rgba(255,255,255,0.78)\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|phone\" background_image_phone=\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\" background_enable_image_phone=\"on\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][et_pb_slide heading=\"FASHION\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Open Sans||||||||\" header_text_color=\"#B3B3B3\" header_font_size=\"38px\" header_letter_spacing=\"14px\" body_font=\"Open Sans|300|||||||\" body_text_color=\"#B3B3B3\" body_font_size=\"20px\" body_letter_spacing=\"2px\" body_line_height=\"1.2em\" background_enable_color=\"off\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\" background_enable_image=\"on\" header_font_size_tablet=\"30px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" header_letter_spacing_tablet=\"8px\" header_letter_spacing_phone=\"6px\" header_letter_spacing_last_edited=\"on|tablet\" body_font_size_tablet=\"20px\" body_font_size_phone=\"16px\" body_font_size_last_edited=\"on|desktop\" background_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_transition=\"on\"][/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_margin=\"||50px||false|false\" custom_margin_tablet=\"||-5px||false|false\" custom_margin_phone=\"||-2px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" custom_padding_tablet=\"0px||122px||false|false\" custom_padding_phone=\"||100px||false|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"BRANDING \" button_alignment=\"center\" _builder_version=\"4.17.4\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,71,158,0.46) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,71,158,0.46)\" background_image=\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"FASHION\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(255,255,255,0) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(255,255,255,0)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\" link_option_url=\"#\" border_width_all=\"7px\" border_color_all=\"#000000\" global_colors_info=\"{}\"]<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/products-photography/\" button_text=\"PRODUCTS\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" _builder_version=\"4.17.6\" background_color=\"#B3B3B3\" min_height=\"705px\" custom_margin=\"||||false|false\" custom_padding=\"6px||11px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"#474747\" text_font_size=\"20px\" text_letter_spacing=\"2px\" text_orientation=\"center\" custom_margin_tablet=\"\" custom_margin_phone=\"16px||19px||false|false\" custom_margin_last_edited=\"on|phone\" text_font_size_tablet=\"18px\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>POST PRODUCTION SERVICES</p>[/et_pb_text][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\" title_text=\"After - changed color of outfit and background\" _builder_version=\"4.16\" custom_margin=\"21px|-46px||||\" custom_margin_tablet=\"|-40px||-17px|false|false\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1750ms\" animation_delay=\"100ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.16\" custom_margin=\"||-6px|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"29px||0px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||0px||false|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"850ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\" title_text=\"Woman-Clothed-Arctic-Change_Final-scaled-1\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px|27px|-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1150ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_padding=\"10px|||||\" animation_style=\"fold\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\" title_text=\"Woman-sitting-in-the-restaurant\" _builder_version=\"4.16\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"|-18px||-18px|false|true\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|tablet\" animation_style=\"fold\" animation_duration=\"1850ms\" animation_delay=\"300ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\" title_text=\"After -  color of BG, Lips, finger nails color changed\" _builder_version=\"4.16\" min_height=\"232px\" custom_margin=\"|-46px||||\" custom_margin_tablet=\"\" custom_margin_phone=\"|-18px||-18px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"6px|||||\" animation_style=\"fold\" animation_duration=\"1300ms\" animation_delay=\"350ms\" border_width_all=\"2px\" border_color_all=\"#000000\" box_shadow_style=\"preset4\" box_shadow_horizontal=\"8px\" box_shadow_blur=\"17px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.16\" background_color=\"#B3B3B3\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" custom_margin=\"-92px|auto||auto||\" custom_padding=\"5px||13px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\" title_text=\"LOGO-FLAPSTART-ORG-230px\" align_tablet=\"center\" align_phone=\"center\" align_last_edited=\"on|tablet\" _builder_version=\"4.17.4\" _module_preset=\"default\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|phone\" transform_translate=\"-13px|-69px\" transform_translate_tablet=\"9px|85px\" transform_translate_phone=\"11px|89px\" transform_translate_last_edited=\"on|phone\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|phone\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|phone\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|phone\" transform_styles_last_edited=\"on|phone\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\"][/et_pb_image][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"VIEW MORE\" button_alignment=\"center\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#FFFFFF\" button_bg_color=\"#000000\" button_border_width=\"6px\" button_border_color=\"#000000\" button_letter_spacing=\"4px\" button_font=\"Arial||||||||\" button_icon=\"&#x24;||divi||400\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate=\"0px|-102px\" transform_translate_tablet=\"\" transform_translate_phone=\"\" transform_translate_last_edited=\"on|tablet\" transform_translate_linked=\"off\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" transform_styles_last_edited=\"on|tablet\" custom_margin=\"-175px||||false|false\" custom_margin_tablet=\"0px||0px|1px|false|false\" custom_margin_phone=\"0px|0px|0px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" button_text_size_tablet=\"\" button_text_size_phone=\"18px\" button_text_size_last_edited=\"on|desktop\" transform_styles_tablet=\"\" transform_styles_phone=\"\" global_colors_info=\"{}\" button_bg_color__hover_enabled=\"on|hover\" button_bg_enable_color__hover=\"on\" button_text_size__hover_enabled=\"on|desktop\" button_text_color__hover_enabled=\"on|hover\" button_text_color__hover=\"#FFFFFF\" button_bg_color_gradient_end__hover=\"rgba(255,255,255,0.49)\" button_bg_use_color_gradient__hover=\"on\" button_bg_color_gradient_start__hover=\"rgba(0,0,0,0)\" button_bg_color__hover=\"#000000\" button_text_size__hover=\"17px\" button_bg_color_gradient_stops__hover=\"rgba(0,0,0,0) 0%|rgba(255,255,255,0.49) 100%\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Studio Set Francine Cocoa Red-FINAL\" sticky_enabled=\"0\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','85-revision-v1','','','2022-08-05 19:55:07','2022-08-05 19:55:07','',85,'https://flaphotography.com/?p=1740',0,'revision','',0),(1746,1,'2022-08-06 16:37:03','2022-08-06 16:37:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1745,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-06 16:37:03','2022-08-06 16:37:03','',9,'https://flaphotography.com/?p=1746',0,'revision','',0),(1749,1,'2022-08-06 17:27:15','2022-08-06 17:27:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-06 17:27:15','2022-08-06 17:27:15','',9,'https://flaphotography.com/?p=1749',0,'revision','',0),(1763,1,'2022-09-15 18:47:25','2022-09-15 18:47:25','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-09-15 18:47:25','2022-09-15 18:47:25','',197,'https://flaphotography.com/?p=1763',0,'revision','',0),(1765,1,'2022-09-15 19:10:24','2022-09-15 19:10:24','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1133_32 label{\n display: block !important;\n}\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-09-15 19:10:24','2022-09-15 19:10:24','',197,'https://flaphotography.com/?p=1765',0,'revision','',0),(1767,1,'2022-09-15 19:11:08','2022-09-15 19:11:08','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-09-15 19:11:08','2022-09-15 19:11:08','',197,'https://flaphotography.com/?p=1767',0,'revision','',0),(1771,1,'2022-09-16 20:13:06','2022-09-16 20:13:06','/*** TO FIX BLOOM OPTIN POP UP***/\n.et_bloom_form_header, .et_bloom_form_content, .et_bloom_form_container_wrapper {\n    height: auto!important;\n}\n\n/***DROP DOWN MENU TEXT SIZE***/\n.et_pb_menu li li a {\nfont-size: 14px !important;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE MAIN CONTACT FORM***/\n.first_contact .et_pb_contact_field_options_title {\n  color: black;\n}\n\n/*** TO CHANGE FIELD OPTION TEXT COLOR OF THE SECOND-BLUE CONTACT FORM***/\n.second_form .et_pb_contact_field_options_title {\n  color: white;\n}\n\n\n/***COLOR CHANGE OF THE ERROR RESPONSE OF FIELD OPTIONS-SELECT PACKAGE OF OVERLAY CONTACT FORM WHEN USER MISSES TO FILL ALL THE FIELDS***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: black!important;\n}\n\n/***TO CHANGE FONT COLOR OF ERROR RESPONSE OF MISSING FIELDS LIST OF THE OVERLAY CONTACT FORM INCLUDING FONT WEIGHT***/\n.et-db #et-boc .et-l {\n    color: black;\n    font-weight: bold;\n}\n\n/***TO TEMPORARILY HIDE CART AND ADJUSTED SPACING ***/\n#top-header .et-cart-info {\n    margin-left: 15px;\n    margin-right: 10px;\n    display: none;\n}\n\n\n/***CONTACT FORM SUCESS MESSAGE FONT***/\n.et-pb-contact-message {\ncolor: black;\nfont-size: 16px;\ntext-align: center;\n}\n\n/***CONTACT FORM FONT COLOR FOR MISSING FIELD SELECTION ERROR***/\n.et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio label, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error .et_pb_contact_field_radio_title, .et-db #et-boc .et-l .et_pb_contact .et_pb_contact_form p.et_contact_error input[type=checkbox]+label {\n    color: #d53c22!important;\n}\n\n\n/* Hide Divi Main Navigation Menu */\n#main-header { display:none; }\n#page-container { \n	padding-top:0px !important; \n	margin-top:-1px !important \n}\n\n\n.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 700px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 500px;\n}\n@media (max-width: 768px){\n	.et_pb_menu li li a {\n    font-size: 14px!important;\n    width: 200px;\n}\n.et_pb_menu__menu>nav>ul>li>ul {\n    width: 200px;\n}\n}\n	\n	/***TO AUTO RESIZE MENU HEADER FONT AS THE BROWSER WINDOW GETS SMALLER- IT AFFECTS MOBILE MENU FONT SIZE***/\n@media screen and (max-width:1280px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n@media screen and (max-width:1024px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 16px !important;\n}\n}\n/***TO SET BACK MOBILE MENU FONT SIZE****/\n@media screen and (max-width:600px){\n.et_pb_menu_0.et_pb_menu ul li a {\nfont-size: 20px !important;\n}\n}\n\n@media screen and (max-width: 980px) {\n    .logo_container {\n        text-align: center!important;\n    }\n}\n\n\n.cu-form .et_pb_contact_field_dov_1483_32 label{\n display: block !important;\n}\n\n.cu-form .et_pb_contact_field_dov_1133_16 label{\n display: block !important;\n}\n\n\n','Divi','','inherit','closed','closed','','197-revision-v1','','','2022-09-16 20:13:06','2022-09-16 20:13:06','',197,'https://flaphotography.com/?p=1771',0,'revision','',0),(1751,1,'2022-08-13 03:46:07','2022-08-13 03:46:07','','','','inherit','open','closed','','morlon-prayer-img_1807-1500px','','','2022-08-13 03:46:24','2022-08-13 03:46:24','',0,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg',0,'attachment','image/jpeg',0),(1752,1,'2022-08-13 03:46:13','2022-08-13 03:46:13','','','','inherit','open','closed','','morlon-standimg_1792-1500px','','','2022-08-13 03:46:32','2022-08-13 03:46:32','',0,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg',0,'attachment','image/jpeg',0),(1753,1,'2022-08-13 03:47:42','2022-08-13 03:47:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$449 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 4 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.4\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-08-13 03:47:42','2022-08-13 03:47:42','',9,'https://flaphotography.com/?p=1753',0,'revision','',0),(1778,1,'2022-11-09 17:12:04','2022-11-09 17:12:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 1 backdrop\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-11-09 17:12:04','2022-11-09 17:12:04','',9,'https://flaphotography.com/?p=1778',0,'revision','',0),(1777,1,'2022-11-09 16:57:04','2022-11-09 16:57:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" hover_enabled=\"0\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-11-09 16:57:04','2022-11-09 16:57:04','',9,'https://flaphotography.com/?p=1777',0,'revision','',0),(1779,1,'2022-11-09 17:13:41','2022-11-09 17:13:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 1 backdrop\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-11-09 17:13:41','2022-11-09 17:13:41','',9,'https://flaphotography.com/?p=1779',0,'revision','',0),(1780,1,'2022-11-09 17:13:50','2022-11-09 17:13:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrop\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-11-09 17:13:50','2022-11-09 17:13:50','',9,'https://flaphotography.com/?p=1780',0,'revision','',0),(1781,1,'2022-11-09 17:15:02','2022-11-09 17:15:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','CORPORATE','','inherit','closed','closed','','9-revision-v1','','','2022-11-09 17:15:02','2022-11-09 17:15:02','',9,'https://flaphotography.com/?p=1781',0,'revision','',0),(1782,1,'2022-11-09 17:15:17','2022-11-09 17:15:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.11.2\" _module_preset=\"default\" custom_margin=\"||0px|||\" custom_padding=\"6px||0px|||\" global_module=\"234\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu menu_style=\"centered\" active_link_color=\"#B3B3B3\" dropdown_menu_bg_color=\"#000000\" dropdown_menu_line_color=\"#000000\" dropdown_menu_text_color=\"#FFFFFF\" dropdown_menu_active_link_color=\"#D6D6D6\" mobile_menu_bg_color=\"#000000\" mobile_menu_text_color=\"#FFFFFF\" logo=\"https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png\" logo_url=\"https://flaphotography.com/\" logo_width=\"87%\" cart_icon_color=\"#000000\" search_icon_color=\"#000000\" menu_icon_color=\"#000000\" _builder_version=\"4.17.4\" _module_preset=\"default\" menu_font=\"Arial||||||||\" menu_text_color=\"#000000\" menu_font_size=\"16px\" menu_letter_spacing=\"7px\" menu_line_height=\"1.3em\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" dropdown_menu_text_color__hover_enabled=\"on|hover\" dropdown_menu_text_color__hover=\"#D6D6D6\" menu_text_color__hover_enabled=\"on|desktop\" menu_text_color__hover=\"#6B6B6B\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.17.4\" _module_preset=\"default\" background_color=\"#FFFFFF\" custom_padding=\"1px||6px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" z_index=\"auto\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_font_size=\"17px\" text_letter_spacing=\"2px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_font_size=\"22px\" header_letter_spacing=\"6px\" header_line_height=\"1.2em\" text_orientation=\"center\" text_font_size_tablet=\"\" text_font_size_phone=\"15px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"20px\" header_font_size_phone=\"17px\" header_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>BRANDING</h1>\n<p>Corporate, Creators, &amp; Artists</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"rgba(71,71,71,0.3) 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\" background_blend=\"screen\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"6px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"17px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<p>CREATORS &amp; ARTISTS</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"||124px||false|false\" custom_margin_phone=\"||205px||false|false\" custom_margin_last_edited=\"off|tablet\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"1290,1302,1575,1577,1063,1062,1539,1538\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][et_pb_gallery gallery_ids=\"1583,1584,1585,1592,1610,1614,1617,1748,1696,1695,1716,1717,1723,1710,1751,1752\" posts_number=\"16\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.18.0\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Corporate photos\" _builder_version=\"4.17.4\" background_enable_color=\"off\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"167deg\" background_color_gradient_stops=\"#474747 0%|#000000 100%\" background_color_gradient_start=\"#474747\" background_color_gradient_end=\"#000000\" custom_padding=\"35px||1px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial||||||||\" text_text_color=\"rgba(214,214,214,0.71)\" text_font_size=\"22px\" text_letter_spacing=\"7px\" text_font_tablet=\"Arial|300|||||||\" text_font_phone=\"Arial||||||||\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"22px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"center\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>CORPORATE</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_gallery gallery_ids=\"909,905,1172,1323,1105,1104,654,665\" posts_number=\"12\" orientation=\"portrait\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"RGBA(255,255,255,0)\" hover_overlay_color=\"RGBA(255,255,255,0)\" module_class=\"pa-image-gallery-2-3 \" _builder_version=\"4.17.4\" _module_preset=\"default\" width=\"100%\" min_height_last_edited=\"off|desktop\" animation_style=\"flip\" global_colors_info=\"{}\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"PRICING - CORPORATE\" module_id=\"CorporatePrice-Section\" _builder_version=\"4.17.4\" _module_preset=\"default\" use_background_color_gradient=\"on\" background_color_gradient_stops=\"rgba(0,9,79,0.29) 0%|rgba(0,0,0,0.58) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,9,79,0.29)\" background_color_gradient_end=\"rgba(0,0,0,0.58)\" background_image=\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\" parallax=\"on\" custom_padding=\"10px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width=\"90%\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|phone\" max_width=\"1689px\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$210 / 3</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"5px|6px|5px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"3 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"1 hour session, 1 outfit, 1 Backdrop.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$349 / 6</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"6 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"2 hours session, 2 outfits, 2 backdrops\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" hover_enabled=\"0\" border_radii=\"off||||\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" _module_preset=\"default\" custom_padding=\"10px|10px|10px|10px|true|true\" border_width_all=\"2px\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"rgba(0,0,0,0.45)\" text_orientation=\"center\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"]<h1>$499 / 10</h1>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET THIS OFFER\" button_alignment=\"center\" module_id=\"overlay_unique_id_1133\" _builder_version=\"4.16\" _module_preset=\"default\" custom_button=\"on\" button_text_size=\"22px\" button_text_color=\"#FFFFFF\" custom_margin=\"-23px||51px||false|false\" button_text_size_tablet=\"\" button_text_size_phone=\"20px\" button_text_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" text_font=\"Arial|300|||||||\" text_text_color=\"#FFFFFF\" text_font_size=\"29px\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"45px\" header_letter_spacing=\"2px\" background_color=\"#ff0000\" background_color_gradient_direction=\"160deg\" text_orientation=\"center\" custom_margin=\"-33px||||false|false\" custom_padding=\"6px|6px|6px|6px|true|true\" text_font_size_tablet=\"\" text_font_size_phone=\"25px\" text_font_size_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_text][et_pb_blurb title=\"10 Professionally retouched photos.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"3 hours session, 3 outfits, 3 backdrops.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.19.0\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"For more than 10 retouched photos please call us for a suitable package deal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Backdrop: Seamless paper of your choice\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Online gallery to pick your photos for editing.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"On location photoshoot is an additional $90 depending on the destination.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.17.6\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#FFFFFF\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" body_text_color=\"#FFFFFF\" background_color=\"#24294f\" background_layout=\"dark\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off||||\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" _module_preset=\"default\" background_enable_color=\"off\" width_tablet=\"\" width_phone=\"95%\" width_last_edited=\"on|tablet\" max_width=\"612px\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|phone\" custom_padding=\"10px|14px|10px|14px|true|true\" border_color_all=\"#000000\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"26px\" header_letter_spacing=\"3px\" header_line_height=\"1.2em\" background_color=\"rgba(0,0,0,0.45)\" custom_margin=\"45px||||false|false\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"6px|6px|6px|6px|true|true\" header_font_size_tablet=\"26px\" header_font_size_phone=\"22px\" header_font_size_last_edited=\"on|tablet\" global_colors_info=\"{}\"]<h1>Standard Retouching Included</h1>[/et_pb_text][et_pb_blurb title=\"Highlights correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" custom_padding=\"6px|6px|0px|6px|false|true\" border_radii=\"off|88px|||\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Skin tone correction.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"0px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Facial Blemishes removal (such as scars, and pimples).\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Basic sharpening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Teeth whitening.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Stray hair removal.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"We do not give away or sell unedited / raw photos since they are not the true representation of our work.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][et_pb_blurb title=\"Retouched photos will be delivered through a dropbox download link.\" use_icon=\"on\" font_icon=\"&#xe044;||divi||400\" icon_color=\"#000000\" icon_placement=\"left\" _builder_version=\"4.16\" _module_preset=\"default\" header_font=\"Arial||||||||\" header_text_color=\"#000000\" header_font_size=\"18px\" header_letter_spacing=\"1px\" header_line_height=\"1.2em\" background_color=\"rgba(255,255,255,0.82)\" transform_scale_tablet=\"\" transform_scale_phone=\"\" transform_scale_last_edited=\"on|desktop\" transform_translate_tablet=\"0px|0px\" transform_translate_phone=\"0px|0px\" transform_translate_last_edited=\"on|phone\" transform_rotate_tablet=\"\" transform_rotate_phone=\"\" transform_rotate_last_edited=\"on|desktop\" transform_skew_tablet=\"\" transform_skew_phone=\"\" transform_skew_last_edited=\"on|desktop\" transform_origin_tablet=\"\" transform_origin_phone=\"\" transform_origin_last_edited=\"on|desktop\" custom_padding=\"6px|6px|0px|6px|false|true\" global_colors_info=\"{}\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" disabled_on=\"on|off|off\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_module=\"1659\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_fullwidth_header _builder_version=\"4.17.6\" _module_preset=\"default\" background_enable_color=\"off\" background_video_mp4=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" min_height=\"844px\" global_colors_info=\"{}\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"off|on|on\" _builder_version=\"4.17.6\" _module_preset=\"default\" background_color=\"#000000\" custom_padding=\"0px||0px|||\" global_module=\"1660\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" width=\"99%\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"4.17.6\" background_color=\"#000000\" width=\"100%\" max_width=\"100%\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height=\"396px\" min_height_tablet=\"\" min_height_phone=\"auto\" min_height_last_edited=\"on|phone\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"106px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|phone\" custom_margin=\"-6px||-11px|||\" custom_margin_tablet=\"0px||0px||false|false\" custom_margin_phone=\"||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"21px||8px|||\" custom_padding_tablet=\"0px||0px||false|false\" custom_padding_phone=\"\" border_width_top=\"3px\" border_color_top=\"#6B6B6B\" global_module=\"367\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.17.6\" width=\"85%\" width_tablet=\"71%\" width_phone=\"68%\" width_last_edited=\"on|phone\" max_width=\"1364px\" max_width_tablet=\"\" max_width_phone=\"2560%\" max_width_last_edited=\"on|phone\" min_height=\"100px\" min_height_tablet=\"\" min_height_phone=\"1000px\" min_height_last_edited=\"on|phone\" height=\"100px\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height=\"100px\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"||||false|false\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||||false|false\" module_alignment_tablet=\"\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"2px|0px||0px|false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_font=\"Arial||||||||\" text_text_color=\"#D6D6D6\" text_font_size=\"22px\" text_letter_spacing=\"2px\" header_text_color=\"#e02b20\" width_tablet=\"\" width_phone=\"auto\" width_last_edited=\"on|phone\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" max_height_tablet=\"\" max_height_phone=\"\" max_height_last_edited=\"on|tablet\" custom_margin=\"|auto|11px|-4px|false|false\" custom_margin_tablet=\"|||auto|false|false\" custom_margin_phone=\"|0px|16px|0px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"|7px|3px|||\" custom_padding_tablet=\"|0px|0px||false|false\" custom_padding_phone=\"|0px|0px|0px|false|false\" custom_padding_last_edited=\"on|phone\" text_orientation_tablet=\"\" text_orientation_phone=\"left\" text_orientation_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Services</p>[/et_pb_text][et_pb_button button_url=\"https://flaphotography.com/corporate\" button_text=\"Corporate Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/fashion-modeling-sessions/\" button_text=\"Fashion / Modeling Sessions\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/products-photography\" button_text=\"Products Photography\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"#\" button_text=\"PersonalIzed Offer\" module_id=\"overlay_unique_id_1483\" _builder_version=\"4.17.4\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#B3B3B3\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||||false|false\" custom_padding=\"3px||3px||true|false\" global_colors_info=\"{}\" button_text_color__hover_enabled=\"on|desktop\" button_text_color__hover=\"#474747\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://flaphotography.com/post-production\" button_text=\"Post Production\" _builder_version=\"4.17.6\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flapstart.com\" button_text=\"Web & Graphic Design\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-5px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_button button_url=\"https://flaphotography.com/about\" button_text=\"About\" _builder_version=\"4.16\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#D6D6D6\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_letter_spacing=\"3px\" button_font=\"Arial||||||||\" button_icon=\"&#x45;||divi||400\" button_icon_color=\"#ef4326\" custom_margin=\"||-6px|||\" custom_padding=\"0px||14px||false|false\" global_colors_info=\"{}\"][/et_pb_button][et_pb_social_media_follow _builder_version=\"4.17.6\" text_orientation=\"left\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|tablet\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"on|tablet\" min_height_tablet=\"\" min_height_phone=\"\" min_height_last_edited=\"on|tablet\" height_tablet=\"\" height_phone=\"\" height_last_edited=\"on|tablet\" custom_margin=\"||0px|13px|false|false\" custom_margin_tablet=\"|auto||15px|false|false\" custom_margin_phone=\"|auto||14px|false|false\" custom_margin_last_edited=\"on|tablet\" custom_padding=\"||||false|false\" custom_padding_tablet=\"|||0px|false|false\" custom_padding_phone=\"|||0px|false|false\" custom_padding_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_social_media_follow_network social_network=\"facebook\" url=\"https://www.facebook.com/FlapStart\" _builder_version=\"4.16\" background_color=\"#3b5998\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" url=\"https://www.instagram.com/kcj_flapstart\" _builder_version=\"4.17.6\" background_color=\"#ea2c59\" global_colors_info=\"{}\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" text_text_color=\"#8F8F8F\" custom_margin_tablet=\"\" custom_margin_phone=\"|-29px||-29px|false|true\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||14px|false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"]<p>Copyright © 2020 - Flaphotography.com- All Rights Reserved - Site built by FlapSrart.com</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding_tablet=\"\" custom_padding_phone=\"||||false|false\" custom_padding_last_edited=\"on|phone\" global_colors_info=\"{}\"][et_pb_video src=\"https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4\" module_class=\"video-autoplay\" _builder_version=\"4.17.6\" _module_preset=\"default\" custom_margin_tablet=\"|||-34px|false|false\" custom_margin_phone=\"|-49px||-49px|false|true\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section]','','','inherit','closed','closed','','9-autosave-v1','','','2022-11-09 17:15:17','2022-11-09 17:15:17','',9,'https://flaphotography.com/?p=1782',0,'revision','',0);
/*!40000 ALTER TABLE `wp1j_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_smush_dir_images`
--

DROP TABLE IF EXISTS `wp1j_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `path_hash` char(32) DEFAULT NULL,
  `resize` varchar(55) DEFAULT NULL,
  `lossy` varchar(55) DEFAULT NULL,
  `error` varchar(55) DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_smush_dir_images`
--

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

--
-- Table structure for table `wp1j_term_relationships`
--

DROP TABLE IF EXISTS `wp1j_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_term_relationships`
--

LOCK TABLES `wp1j_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp1j_term_relationships` DISABLE KEYS */;
INSERT INTO `wp1j_term_relationships` VALUES (1,1,0),(183,2,0),(183,3,0),(183,4,0),(199,5,0),(208,6,0),(213,6,0),(211,6,0),(209,6,0),(1186,2,0),(1186,8,0),(234,7,0),(234,8,0),(234,4,0),(235,7,0),(235,8,0),(235,4,0),(238,6,0),(290,2,0),(290,3,0),(290,4,0),(291,2,0),(291,3,0),(291,4,0),(359,6,0),(367,7,0),(367,8,0),(367,4,0),(430,6,0),(1131,2,0),(848,7,0),(967,2,0),(848,8,0),(848,4,0),(860,2,0),(860,3,0),(860,4,0),(967,8,0),(967,4,0),(982,2,0),(982,8,0),(982,4,0),(987,2,0),(987,8,0),(987,4,0),(1015,2,0),(1015,8,0),(1015,4,0),(1047,2,0),(1047,3,0),(1047,4,0),(1050,2,0),(1050,3,0),(1050,4,0),(1131,8,0),(1131,4,0),(1132,2,0),(1132,9,0),(1132,4,0),(1186,4,0),(1187,2,0),(1187,3,0),(1187,10,0),(1193,2,0),(1193,3,0),(1193,10,0),(1224,2,0),(1224,8,0),(1224,4,0),(1230,6,0),(1234,2,0),(1234,9,0),(1234,4,0),(1261,2,0),(1261,8,0),(1261,4,0),(1659,7,0),(1659,8,0),(1659,10,0),(1660,7,0),(1660,8,0),(1660,4,0);
/*!40000 ALTER TABLE `wp1j_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_term_taxonomy`
--

DROP TABLE IF EXISTS `wp1j_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext 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=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_term_taxonomy`
--

LOCK TABLES `wp1j_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp1j_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp1j_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'scope','',0,18),(3,3,'layout_type','',0,8),(4,4,'module_width','',0,21),(5,5,'layout_type','',0,0),(6,6,'nav_menu','',0,8),(7,7,'scope','',0,6),(8,8,'layout_type','',0,14),(9,9,'layout_type','',0,2),(10,10,'module_width','',0,3);
/*!40000 ALTER TABLE `wp1j_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_termmeta`
--

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

--
-- Dumping data for table `wp1j_termmeta`
--

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

--
-- Table structure for table `wp1j_terms`
--

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

--
-- Dumping data for table `wp1j_terms`
--

LOCK TABLES `wp1j_terms` WRITE;
/*!40000 ALTER TABLE `wp1j_terms` DISABLE KEYS */;
INSERT INTO `wp1j_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'not_global','not_global',0),(3,'module','module',0),(4,'regular','regular',0),(5,'layout','layout',0),(6,'TOP MENU','top-menu',0),(7,'global','global',0),(8,'section','section',0),(9,'row','row',0),(10,'fullwidth','fullwidth',0);
/*!40000 ALTER TABLE `wp1j_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_usermeta`
--

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

--
-- Dumping data for table `wp1j_usermeta`
--

LOCK TABLES `wp1j_usermeta` WRITE;
/*!40000 ALTER TABLE `wp1j_usermeta` DISABLE KEYS */;
INSERT INTO `wp1j_usermeta` VALUES (1,1,'nickname','KCFOTO92'),(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,'wp1j_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp1j_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"f5124b6e427ee26251d45da8907f446f2cb375876850cc7655ef7d5e04dfff8d\";a:4:{s:10:\"expiration\";i:1669076394;s:2:\"ip\";s:14:\"142.114.98.208\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36\";s:5:\"login\";i:1667866794;}}'),(17,1,'wp1j_user-settings','imgsize=&libraryContent=browse'),(18,1,'wp1j_user-settings-time','1632155583'),(19,1,'wp1j_dashboard_quick_press_last_post_id','1776'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"142.114.98.0\";}'),(23,1,'_yoast_wpseo_profile_updated','1631269744'),(24,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\";}'),(25,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(26,1,'nav_menu_recently_edited','6'),(27,1,'itsec_user_activity_last_seen','1668276668'),(54,1,'itsec-password-strength','4'),(55,1,'_itsec_password_evaluation_hibp','0'),(56,1,'_itsec_password_requirements','a:1:{s:16:\"evaluation_times\";a:2:{s:8:\"strength\";i:1633612293;s:4:\"hibp\";i:1633612293;}}'),(52,1,'itsec_logs_page_screen_options','a:6:{s:8:\"per_page\";i:20;s:12:\"default_view\";s:9:\"important\";s:5:\"color\";b:1;s:10:\"show_debug\";b:0;s:12:\"show_process\";b:0;s:9:\"last_seen\";i:0;}'),(53,1,'_itsec_primary_dashboard','615'),(85,1,'closedpostboxes_divi_overlay','a:0:{}'),(84,1,'screen_layout_divi_overlay','2'),(86,1,'metaboxhidden_divi_overlay','a:2:{i:0;s:7:\"slugdiv\";i:1;s:9:\"authordiv\";}'),(57,1,'_itsec_has_logged_in','1633612293'),(82,1,'wp1j_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:6;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:8:\"KCFOTO92\";s:9:\"user_pass\";s:34:\"$P$B3HR5.f7XaSds1atHm/6zcN0St3roL1\";s:13:\"user_nicename\";s:8:\"KCFOTO92\";s:10:\"user_email\";s:23:\"flalogsta@flapstart.com\";s:8:\"user_url\";s:26:\"https://flaphotography.com\";s:15:\"user_registered\";s:19:\"2021-09-10 01:08:58\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:8:\"KCFOTO92\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:17:\"wp1j_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:69:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(83,1,'meta-box-order_divi_overlay','a:3:{s:4:\"side\";s:200:\"do_manualtriggers,do_closecustoms_meta_box5,do_animation_meta_box3,et_settings_meta_box,submitdiv,do_overlay_color_picker2,do_displaylocations_meta_box1,do_moresettings_meta_box4,do_automatictriggers6\";s:6:\"normal\";s:52:\"et_pb_layout,wpseo_meta,postcustom,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}');
/*!40000 ALTER TABLE `wp1j_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_users`
--

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

--
-- Dumping data for table `wp1j_users`
--

LOCK TABLES `wp1j_users` WRITE;
/*!40000 ALTER TABLE `wp1j_users` DISABLE KEYS */;
INSERT INTO `wp1j_users` VALUES (1,'KCFOTO92','$P$BkjEXHUwpUMVYd7/js6FCLhA3rB0Xk0','KCFOTO92','flalogsta@flapstart.com','https://flaphotography.com','2021-09-10 01:08:58','',0,'KCFOTO92');
/*!40000 ALTER TABLE `wp1j_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_wpfm_backup`
--

DROP TABLE IF EXISTS `wp1j_wpfm_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_wpfm_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_name` text DEFAULT NULL,
  `backup_date` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_wpfm_backup`
--

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

--
-- Table structure for table `wp1j_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `wp1j_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_wpmailsmtp_debug_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `content` text DEFAULT NULL,
  `initiator` text DEFAULT NULL,
  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_wpmailsmtp_debug_events`
--

LOCK TABLES `wp1j_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wp1j_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `wp1j_wpmailsmtp_debug_events` VALUES (1,'Mailer: Other SMTP\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2021-10-26 05:21:56'),(2,'Mailer: Other SMTP\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":650}',0,'2021-10-30 19:47:14'),(3,'Mailer: Other SMTP\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":650}',0,'2021-10-30 20:41:12'),(4,'Mailer: Other SMTP\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2022-05-31 21:52:24'),(5,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":908}',0,'2022-10-18 04:47:32'),(6,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2022-10-25 17:31:24'),(7,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2022-10-28 05:50:02'),(8,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-includes\\/pluggable.php\",\"line\":1931}',0,'2022-11-02 01:17:23'),(9,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":229}',0,'2022-11-06 18:23:27'),(10,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2022-11-06 18:24:11'),(11,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-mail.php\",\"line\":630}',0,'2022-11-07 07:49:20'),(12,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-mail.php\",\"line\":630}',0,'2022-11-07 18:15:38'),(13,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/flapst5\\/flaphotography.com\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-mail.php\",\"line\":624}',0,'2022-11-07 18:26:28');
/*!40000 ALTER TABLE `wp1j_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_wpmailsmtp_tasks_meta`
--

DROP TABLE IF EXISTS `wp1j_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_wpmailsmtp_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) NOT NULL,
  `data` longtext NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_wpmailsmtp_tasks_meta`
--

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

--
-- Table structure for table `wp1j_yoast_indexable`
--

DROP TABLE IF EXISTS `wp1j_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=440 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_yoast_indexable`
--

LOCK TABLES `wp1j_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp1j_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp1j_yoast_indexable` VALUES (1,'https://flaphotography.com/author/KCFOTO92/','43:1ec0b86e3e0db928080e0f34b065e98b',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/dabd81f1584ddd1e467a62aa499e596c?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/dabd81f1584ddd1e467a62aa499e596c?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-09-10 02:12:12','2022-11-09 22:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-09 17:15:02','2021-09-10 01:08:58'),(2,'https://flaphotography.com/coming-soon-page/','44:e986a3ed359e40dea891023d830d7a71',79,'post','page',1,0,NULL,NULL,'COMING SOON PAGE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2021-09-10 02:12:12','2021-11-18 16:09:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-20 00:41:18','2021-09-10 02:07:43'),(3,'https://flaphotography.com/','27:b23eaefb27ef36a7c33f72354f92bd34',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','FLAP PHOTOGRAPHY','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,43,NULL,'2021-09-10 02:12:13','2022-11-09 22:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-09 17:15:02','2021-09-10 01:08:58'),(4,'https://flaphotography.com/corporate/','37:21141ddab336e0e9e2b71e1f56657c8c',9,'post','page',1,0,NULL,NULL,'CORPORATE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,48,27,NULL,'2021-09-10 10:16:34','2022-11-09 22:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-09 17:15:02','2021-09-10 01:18:22'),(5,'https://flaphotography.com/couples-family-sessions/','51:00b995d84279cae26a800746d405d65b',25,'post','page',1,0,NULL,NULL,'COUPLES &#038; FAMILY SESSIONS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,33,10,NULL,'2021-09-10 10:16:34','2022-07-31 02:14:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:28:23','2021-09-10 01:46:18'),(6,'https://flaphotography.com/fashion-modeling-sessions/','53:dd5954913ba59137d7d76812a26525f1',61,'post','page',1,0,NULL,NULL,'FASHION &#038; MODELING SESSIONS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27,23,NULL,'2021-09-10 10:16:34','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-31 03:07:40','2021-09-10 02:01:34'),(7,'https://flaphotography.com/wedding-photography/','47:8e1f2019eceef4fe169fbff2cdeaab3e',71,'post','page',1,0,NULL,NULL,'WEDDING PHOTOGRAPHY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,3,NULL,'2021-09-10 10:16:34','2022-06-26 23:29:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-11 17:37:52','2021-09-10 02:04:04'),(8,'https://flaphotography.com/','27:b23eaefb27ef36a7c33f72354f92bd34',85,'post','page',1,0,NULL,NULL,'HOME','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,1,NULL,'2021-09-10 10:18:09','2022-08-05 23:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 19:55:08','2021-09-10 10:22:56'),(17,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png','78:b17e8042e5f8c95417a7bc9b17eef253',21,'post','attachment',1,0,NULL,NULL,'FotoOPEN-LOGO-VERS-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png',NULL,'21','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png','21','attachment-image','{\"width\":800,\"height\":171,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-VERS-3.png\",\"size\":\"full\",\"id\":21,\"alt\":\"\",\"pixels\":136800,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-10 10:22:56','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:17:53','2021-09-10 01:17:53'),(9,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg','70:6ffea704f731b3fc50e69adfb2c9a272',89,'post','attachment',1,0,NULL,NULL,'Classic-Pen4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg',NULL,'89','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg','89','attachment-image','{\"width\":980,\"height\":607,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Classic-Pen4.jpg\",\"size\":\"full\",\"id\":89,\"alt\":\"\",\"pixels\":594860,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-10 10:20:20','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:20','2021-09-10 10:20:20'),(10,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg','83:af4f905c8cd2a7a0b013b4a25c01c5aa',90,'post','attachment',1,0,NULL,NULL,'Classic-Pen-Further-right','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg',NULL,'90','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg','90','attachment-image','{\"width\":980,\"height\":607,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Classic-Pen-Further-right.jpg\",\"size\":\"full\",\"id\":90,\"alt\":\"\",\"pixels\":594860,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-10 10:20:22','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:22','2021-09-10 10:20:22'),(11,'https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg','89:802bba19c6aa19dd35b045e841a0a473',91,'post','attachment',1,0,NULL,NULL,'Photographer-Blue-Red-Radient-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg',NULL,'91','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg','91','attachment-image','{\"width\":1686,\"height\":1280,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Photographer-Blue-Red-Radient-1.jpg\",\"size\":\"full\",\"id\":91,\"alt\":\"\",\"pixels\":2158080,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-10 10:20:23','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:23','2021-09-10 10:20:23'),(12,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg','96:25ce01077a60986019b4d9e2c65ac3dc',92,'post','attachment',1,0,NULL,NULL,'Wedding-couple-3-Sky-Replaced-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg',NULL,'92','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg','92','attachment-image','{\"width\":2560,\"height\":1709,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-scaled-1.jpg\",\"size\":\"full\",\"id\":92,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-10 10:20:28','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:28','2021-09-10 10:20:28'),(13,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg','102:7e62004dbeff9d1784c90cc29cb1809f',93,'post','attachment',1,0,NULL,NULL,'Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg',NULL,'93','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg','93','attachment-image','{\"width\":2560,\"height\":1636,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg\",\"size\":\"full\",\"id\":93,\"alt\":\"\",\"pixels\":4188160,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:20:35','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:35','2021-09-10 10:20:35'),(14,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg','89:b5a1e928d90e718bcd359c7730e2e3d0',94,'post','attachment',1,0,NULL,NULL,'Wedding_vows_No-frame2-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg',NULL,'94','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg','94','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-scaled-1.jpg\",\"size\":\"full\",\"id\":94,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-10 10:20:41','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:41','2021-09-10 10:20:41'),(15,'https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg','89:850ca8129fc0f9073fabe4fb2fae4d73',95,'post','attachment',1,0,NULL,NULL,'Baby-puzzle-blend-home-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg',NULL,'95','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg','95','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Baby-puzzle-blend-home-scaled-1.jpg\",\"size\":\"full\",\"id\":95,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-10 10:20:49','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:20:49','2021-09-10 10:20:49'),(74,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png','81:f2f5bf5d947c023f4587a4c43fbf60b9',196,'post','attachment',1,0,NULL,NULL,'FotoOPEN-LOGO-ORG-300PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png',NULL,'196','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png','196','attachment-image','{\"width\":300,\"height\":64,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-ORG-300PX.png\",\"size\":\"full\",\"id\":196,\"alt\":\"\",\"pixels\":19200,\"type\":\"image/png\"}',NULL,NULL,NULL,'2021-09-11 16:31:34','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 16:31:34','2021-09-11 16:31:34'),(75,'https://flaphotography.com/divi/','32:533e3033248d288aa6448ee5d40031a5',197,'post','custom_css',1,0,NULL,NULL,'Divi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:31:41','2022-09-17 00:16:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-16 20:16:20','2021-09-11 16:31:41'),(18,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png','82:58e34d0b1c952b0249c48f00cdd5e201',22,'post','attachment',1,0,NULL,NULL,'LOGO-FLAPSTART-ORG-230px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png',NULL,'22','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png','22','attachment-image','{\"width\":230,\"height\":81,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png\",\"size\":\"full\",\"id\":22,\"alt\":\"\",\"pixels\":18630,\"type\":\"image/png\"}',NULL,3,NULL,'2021-09-10 10:22:56','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:17:55','2021-09-10 01:17:55'),(19,'https://flaphotography.com/post-production/','43:82f12a80668d039645219654f03f4bab',98,'post','page',1,0,NULL,NULL,'POST PRODUCTION','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36,23,NULL,'2021-09-10 10:24:19','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-02 15:24:26','2021-09-10 10:24:58'),(20,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png','89:a9c9b20512c6ec6e56ec538a38eac5b0',104,'post','attachment',1,0,NULL,NULL,'photographer-on-camera-BLUE-NWV','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV.png',NULL,'104','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV-1024x1024.png','104','attachment-image','{\"width\":1024,\"height\":1024,\"path\":\"2021/09/photographer-on-camera-BLUE-NWV-1024x1024.png\",\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-BLUE-NWV-1024x1024.png\",\"size\":\"large\",\"id\":104,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-10 10:25:48','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:25:48','2021-09-10 10:25:48'),(21,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png','87:7926b0d2655b4ccdbd76dab0b5537ffc',105,'post','attachment',1,0,NULL,NULL,'photographer-on-camera-RED-NW','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW.png',NULL,'105','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW-1024x1024.png','105','attachment-image','{\"width\":1024,\"height\":1024,\"path\":\"2021/09/photographer-on-camera-RED-NW-1024x1024.png\",\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/photographer-on-camera-RED-NW-1024x1024.png\",\"size\":\"large\",\"id\":105,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-10 10:26:49','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:26:49','2021-09-10 10:26:49'),(22,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg','105:3f746ba8a9859fc299ce0af7225f0fef',106,'post','attachment',1,0,NULL,NULL,'Women-red-dress_shutterstock_642298723-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg',NULL,'106','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg','106','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg\",\"size\":\"full\",\"id\":106,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:27:52','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:27:52','2021-09-10 10:27:52'),(23,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg','99:e8f0868f54251d41af370cd2ff1fbd2b',107,'post','attachment',1,0,NULL,NULL,'Woman-Clothed-Green-Change_Final-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg',NULL,'107','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg','107','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg\",\"size\":\"full\",\"id\":107,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:27:57','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:27:57','2021-09-10 10:27:57'),(24,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg','100:13891b0fd8c9bc6952ee81e9ec4e052c',108,'post','attachment',1,0,NULL,NULL,'Woman-Clothed-Arctic-Change_Final-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',NULL,'108','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg','108','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg\",\"size\":\"full\",\"id\":108,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-09-10 10:28:11','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:28:11','2021-09-10 10:28:11'),(25,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg','99:df621ed986807e18010655124c3cbcaa',109,'post','attachment',1,0,NULL,NULL,'Woman-Clothed-Brown-Change_Final-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg',NULL,'109','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg','109','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Brown-Change_Final-scaled-1.jpg\",\"size\":\"full\",\"id\":109,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-10 10:46:14','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:46:14','2021-09-10 10:46:14'),(26,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg','108:70530bbab8e83dee767ede3ab9b11ef0',110,'post','attachment',1,0,NULL,NULL,'Man-in-White-suit-shutterstock_1009394125-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg',NULL,'110','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg','110','attachment-image','{\"width\":2560,\"height\":1735,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg\",\"size\":\"full\",\"id\":110,\"alt\":\"\",\"pixels\":4441600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:46:20','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:46:20','2021-09-10 10:46:20'),(27,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg','107:2c913933b973be3780898e8a6527d460',111,'post','attachment',1,0,NULL,NULL,'Man-in-White-suit-LIGHT-RED-Color-change-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg',NULL,'111','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg','111','attachment-image','{\"width\":2560,\"height\":1735,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-LIGHT-RED-Color-change-scaled-1.jpg\",\"size\":\"full\",\"id\":111,\"alt\":\"\",\"pixels\":4441600,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-10 10:46:26','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 10:46:26','2021-09-10 10:46:26'),(28,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg','106:b7ac4ffb2a524d7c59fc083c9903f475',112,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg',NULL,'112','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg','112','attachment-image','{\"width\":2560,\"height\":1735,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg\",\"size\":\"full\",\"id\":112,\"alt\":\"\",\"pixels\":4441600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:46:32','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 04:01:13','2021-09-10 10:46:32'),(29,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg','104:7c4f0bad2f0135b4eff7acd8f4110a4e',113,'post','attachment',1,0,NULL,NULL,'After &#8211; Color of suit and Background changed','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg',NULL,'113','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg','113','attachment-image','{\"width\":2560,\"height\":1735,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg\",\"size\":\"full\",\"id\":113,\"alt\":\"\",\"pixels\":4441600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-10 10:46:39','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 04:01:32','2021-09-10 10:46:39'),(42,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg','107:d5869b5a243a3ba91656db8c87703fb5',129,'post','attachment',1,0,NULL,NULL,'After &#8211; Daylight','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg',NULL,'129','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg','129','attachment-image','{\"width\":1024,\"height\":682,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Sun-Brighter-2-light-black-man-reading-1024x682-1.jpg\",\"size\":\"full\",\"id\":129,\"alt\":\"\",\"pixels\":698368,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:27:25','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 04:07:31','2021-09-11 02:27:25'),(43,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg','101:fb0feea2e670cff50953db8ac49ef354',130,'post','attachment',1,0,NULL,NULL,'After &#8211; Sunrise added','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg',NULL,'130','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg','130','attachment-image','{\"width\":980,\"height\":653,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg\",\"size\":\"full\",\"id\":130,\"alt\":\"\",\"pixels\":639940,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:27:30','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 04:07:08','2021-09-11 02:27:30'),(40,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg','111:ad09e841157157c4b797f982ac78f920',127,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg',NULL,'127','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg','127','attachment-image','{\"width\":1280,\"height\":855,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg\",\"size\":\"full\",\"id\":127,\"alt\":\"Before\",\"pixels\":1094400,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:26:15','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 04:15:16','2021-09-11 02:26:15'),(39,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg','99:e8f341b4886cfc5f02ed9ce9fa2e03af',126,'post','attachment',1,0,NULL,NULL,'After -sky background replaced and enhanced','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg',NULL,'126','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg','126','attachment-image','{\"width\":980,\"height\":654,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg\",\"size\":\"full\",\"id\":126,\"alt\":\"\",\"pixels\":640920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:25:58','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:53:21','2021-09-11 02:25:58'),(35,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg','101:177d4880be171341defd0586e7ede0fa',122,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg',NULL,'122','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg','122','attachment-image','{\"width\":1024,\"height\":683,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg\",\"size\":\"full\",\"id\":122,\"alt\":\"\",\"pixels\":699392,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:21:58','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:55:22','2021-09-11 02:21:58'),(36,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg','95:4d20806220550a530d987a9b94d2a16a',123,'post','attachment',1,0,NULL,NULL,'After &#8211; Tie and pocket colored brown','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg',NULL,'123','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg','123','attachment-image','{\"width\":1024,\"height\":654,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-1.jpg\",\"size\":\"full\",\"id\":123,\"alt\":\"\",\"pixels\":669696,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:22:01','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:56:02','2021-09-11 02:22:01'),(38,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg','96:25605227e2d056963e21372c24bc9eac',125,'post','attachment',1,0,NULL,NULL,'After &#8211; Tie and Background color changed','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg',NULL,'125','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg','125','attachment-image','{\"width\":1080,\"height\":690,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg\",\"size\":\"full\",\"id\":125,\"alt\":\"\",\"pixels\":745200,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:25:35','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:55:15','2021-09-11 02:25:35'),(44,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg','114:631f58afd609bc11e596e7e347840e39',131,'post','attachment',1,0,NULL,NULL,'After','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg',NULL,'131','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg','131','attachment-image','{\"width\":1024,\"height\":683,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS2-Hair-MAG-AFTER-Dodged-Teeth-W-Woman-1024x683-1.jpg\",\"size\":\"full\",\"id\":131,\"alt\":\"\",\"pixels\":699392,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:28:44','2022-07-01 22:49:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:39:46','2021-09-11 02:28:44'),(45,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg','98:f7b73aff5a207467e033cfb05d1c3af9',132,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg',NULL,'132','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg','132','attachment-image','{\"width\":980,\"height\":653,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Eye-IRIS-Hair-MAG-Before-Woman-980x653-1.jpg\",\"size\":\"full\",\"id\":132,\"alt\":\"\",\"pixels\":639940,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:28:50','2022-07-01 22:49:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:20:02','2021-09-11 02:28:50'),(46,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg','100:35c182a2151d988dc337c41196396209',133,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg',NULL,'133','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg','133','attachment-image','{\"width\":1024,\"height\":682,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg\",\"size\":\"full\",\"id\":133,\"alt\":\"\",\"pixels\":698368,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:30:21','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:54:13','2021-09-11 02:30:21'),(47,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg','97:36a53eba45bf8295783829118c72966f',134,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg',NULL,'134','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg','134','attachment-image','{\"width\":980,\"height\":980,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg\",\"size\":\"full\",\"id\":134,\"alt\":\"\",\"pixels\":960400,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:30:56','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:31:33','2021-09-11 02:30:56'),(48,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg','116:4f2758ac53aefab79ff92c0eaca2fecd',135,'post','attachment',1,0,NULL,NULL,'After','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg',NULL,'135','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg','135','attachment-image','{\"width\":1080,\"height\":675,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1-1080x675-1.jpg\",\"size\":\"full\",\"id\":135,\"alt\":\"\",\"pixels\":729000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-11 02:31:13','2021-12-06 16:16:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:31:26','2021-09-11 02:31:13'),(49,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg','115:b21e662a591d0075d036e0cd0c543ee0',136,'post','attachment',1,0,NULL,NULL,'After &#8211; color of BG, Lips, finger nails color changed','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg',NULL,'136','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg','136','attachment-image','{\"width\":1536,\"height\":1536,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg\",\"size\":\"full\",\"id\":136,\"alt\":\"\",\"pixels\":2359296,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:31:52','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:31:11','2021-09-11 02:31:52'),(50,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg','105:b94114c5e523d8a81c56a35d5c31bdc5',137,'post','attachment',1,0,NULL,NULL,'After &#8211; Lips, finger nails colored red, iris enhanced','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg',NULL,'137','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg','137','attachment-image','{\"width\":2048,\"height\":2048,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg\",\"size\":\"full\",\"id\":137,\"alt\":\"\",\"pixels\":4194304,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:32:15','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 13:56:07','2021-09-11 02:32:15'),(52,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg','103:2bd1334f6dcb75d02c8eb1b1cb133606',139,'post','attachment',1,0,NULL,NULL,'After &#8211; Dodge and Burning Applied','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg',NULL,'139','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg','139','attachment-image','{\"width\":1280,\"height\":1280,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg\",\"size\":\"full\",\"id\":139,\"alt\":\"\",\"pixels\":1638400,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:33:04','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:29:02','2021-09-11 02:33:04'),(53,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg','101:24eeb5433325cf208b990f02089a175d',140,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg',NULL,'140','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg','140','attachment-image','{\"width\":1536,\"height\":1536,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg\",\"size\":\"full\",\"id\":140,\"alt\":\"\",\"pixels\":2359296,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:33:54','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:22:26','2021-09-11 02:33:54'),(54,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg','122:bd3c2a8910109a8b4921f4b2de3f9b50',141,'post','attachment',1,0,NULL,NULL,'After &#8211; Teeth whitened, Eye iris enhanced, color correction applied','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg',NULL,'141','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg','141','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg\",\"size\":\"full\",\"id\":141,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-11 02:35:02','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-01 22:52:42','2021-09-11 02:35:02'),(55,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg','122:ce2e5e760156ddbe87072bae456a0b55',142,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg',NULL,'142','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg','142','attachment-image','{\"width\":2560,\"height\":1600,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg\",\"size\":\"full\",\"id\":142,\"alt\":\"\",\"pixels\":4096000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-11 02:36:08','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:24:57','2021-09-11 02:36:08'),(57,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg','117:8ae45086c753b680bece330149782264',144,'post','attachment',1,0,NULL,NULL,'After &#8211; changed color of outfit and background','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg',NULL,'144','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg','144','attachment-image','{\"width\":2560,\"height\":1600,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg\",\"size\":\"full\",\"id\":144,\"alt\":\"\",\"pixels\":4096000,\"type\":\"image/jpeg\"}',NULL,3,NULL,'2021-09-11 02:36:27','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:58:19','2021-09-11 02:36:27'),(59,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg','92:58061c5fbf3604192810f2c8ee3c05d5',146,'post','attachment',1,0,NULL,NULL,'Wedding_vows_No-frame2-1536&#215;1024','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg',NULL,'146','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg','146','attachment-image','{\"width\":1536,\"height\":1024,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding_vows_No-frame2-1536x1024-1.jpg\",\"size\":\"full\",\"id\":146,\"alt\":\"\",\"pixels\":1572864,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-11 02:42:06','2021-12-06 16:16:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 02:42:06','2021-09-11 02:42:06'),(60,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg','110:38160a01e029eddb0e5c667665a5be5a',147,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg',NULL,'147','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg','147','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg\",\"size\":\"full\",\"id\":147,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:46:20','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:45:47','2021-09-11 02:46:20'),(61,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg','86:2a6cd45b48b7c313f79765445d0c4b2d',148,'post','attachment',1,0,NULL,NULL,'After &#8211; Blemish-Removed','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg',NULL,'148','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg','148','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg\",\"size\":\"full\",\"id\":148,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-11 02:46:35','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:28:12','2021-09-11 02:46:35'),(62,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg','98:c5511cba7680c58b291a06058c8ffb02',149,'post','attachment',1,0,NULL,NULL,'After &#8211; Sunset light modified','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg',NULL,'149','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg','149','attachment-image','{\"width\":1536,\"height\":1024,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_RED-2-Sunset-1536x1024-1.jpg\",\"size\":\"full\",\"id\":149,\"alt\":\"\",\"pixels\":1572864,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:47:24','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:27:58','2021-09-11 02:47:24'),(63,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg','98:3e470e8a78a8c8f2015588bbf61afab6',150,'post','attachment',1,0,NULL,NULL,'After &#8211; Sunset light added','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg',NULL,'150','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg','150','attachment-image','{\"width\":768,\"height\":512,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_SunLight-added-768x512-1.jpg\",\"size\":\"full\",\"id\":150,\"alt\":\"\",\"pixels\":393216,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:47:42','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:27:27','2021-09-11 02:47:42'),(64,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg','91:d3bea03e8ca4083e092a84f489e6de67',151,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg',NULL,'151','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg','151','attachment-image','{\"width\":1280,\"height\":853,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/beautiful-woman_pixaby-1280x853-1.jpg\",\"size\":\"full\",\"id\":151,\"alt\":\"\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-11 02:47:59','2022-07-01 22:31:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:26:50','2021-09-11 02:47:59'),(65,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg','124:1adae1282d6d549ac7339fcecdb98b21',152,'post','attachment',1,0,NULL,NULL,'Woman-sitting-in-the-restaurant','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg',NULL,'152','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg','152','attachment-image','{\"width\":1536,\"height\":1025,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg\",\"size\":\"full\",\"id\":152,\"alt\":\"\",\"pixels\":1574400,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:49:02','2022-08-05 19:55:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:03:48','2021-09-11 02:49:02'),(66,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg','100:a13a19ddfd3d805ce4edda07574f54e9',154,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg',NULL,'154','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg','154','attachment-image','{\"width\":1280,\"height\":854,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg\",\"size\":\"full\",\"id\":154,\"alt\":\"\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 02:57:11','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:19:40','2021-09-11 02:57:11'),(69,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg','116:721f01ad7250266a872cb0fc3d34ef30',162,'post','attachment',1,0,NULL,NULL,'After','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg',NULL,'162','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg','162','attachment-image','{\"width\":2560,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg\",\"size\":\"full\",\"id\":162,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 03:35:44','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:36:27','2021-09-11 03:35:44'),(67,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg','103:20f3d6803dd47d031e34476a6e3f01a2',160,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg',NULL,'160','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg','160','attachment-image','{\"width\":1280,\"height\":854,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-shutterstock_195036215-1280x854-1.jpg\",\"size\":\"full\",\"id\":160,\"alt\":\"\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-11 03:17:55','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:18:38','2021-09-11 03:17:55'),(68,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg','101:7af821bb5a283523fbc0c6666477ba67',161,'post','attachment',1,0,NULL,NULL,'After &#8211; Dodged face-Lips retouched','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg',NULL,'161','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg','161','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Idian-Woman-Dodge-2-Lips-full-face-scaled-1.jpg\",\"size\":\"full\",\"id\":161,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-11 03:18:15','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 03:26:37','2021-09-11 03:18:15'),(70,'https://flaphotography.com/et_pb_layout/retouching-text/','56:2fb1cbb5e4b324d510f531c61fc2163c',183,'post','et_pb_layout',1,0,NULL,NULL,'Retouching Text','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 13:43:38','2021-09-11 17:43:38',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(76,'https://flaphotography.com/et_template/default-website-template/','64:47bd3e2a10a1a72fd4027ef130376557',201,'post','et_template',1,0,NULL,NULL,'Default Website Template','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:34:05','2021-09-11 20:34:05',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(77,'https://flaphotography.com/et_template/404-page/','48:bb80f73c8c42b4c6a785d21cef71da3c',202,'post','et_template',1,0,NULL,NULL,'404 Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:34:05','2021-09-11 20:34:05',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(73,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg','108:1720dbb88281afb97304690bf1a1191a',191,'post','attachment',1,0,NULL,NULL,'Before','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg',NULL,'191','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg','191','attachment-image','{\"width\":2560,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg\",\"size\":\"full\",\"id\":191,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-11 14:10:20','2022-07-02 15:24:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 14:12:05','2021-09-11 14:10:20'),(78,'https://flaphotography.com/et_theme_builder/theme-builder/','58:e0db8293d57057f537da09cd5168467f',203,'post','et_theme_builder',1,0,NULL,NULL,'Theme Builder','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:34:35','2021-09-11 20:34:35',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(79,'https://flaphotography.com/et_template/default-website-template-2/','66:7bcda8cd9f8e660539072d9355498a3c',204,'post','et_template',1,0,NULL,NULL,'Default Website Template','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:34:35','2021-09-11 20:34:35',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(80,'https://flaphotography.com/et_template/404-page-2/','50:cdd70ceba6922a60dfe69bf2404ced1c',205,'post','et_template',1,0,NULL,NULL,'404 Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:34:35','2021-09-11 20:34:35',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(82,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png','79:fc03d47b9d050e9b2845606ca8e1d472',207,'post','attachment',1,0,NULL,NULL,'FLAP-PHOTO-LOGO-400PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png',NULL,'207','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png','207','attachment-image','{\"width\":400,\"height\":62,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX.png\",\"size\":\"full\",\"id\":207,\"alt\":\"\",\"pixels\":24800,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-11 16:40:50','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 16:40:50','2021-09-11 16:40:50'),(83,'https://flaphotography.com/208/','31:cc559e5749e326bbfbdff52e58778996',208,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:44:57','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-11 16:46:18'),(84,'https://flaphotography.com/209/','31:193bc9874c49bc218eeabe2595f93164',209,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:45:09','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-11 16:46:18'),(310,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg','88:e7551fc516a7ccf9d8ddb4b3449dc605',1177,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg',NULL,'1177','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg','1177','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg\",\"size\":\"full\",\"id\":1177,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:06:43','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:27','2022-03-24 23:06:43'),(86,'https://flaphotography.com/211/','31:91175cd92eef6d7e7a06df54c20435cd',211,'post','nav_menu_item',1,0,NULL,NULL,'CORPORATE PHOTOGRAPHY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:45:09','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-11 16:46:18'),(88,'https://flaphotography.com/photography/','39:3cc7e1e3f0092f6a535a560d8d03081e',213,'post','nav_menu_item',1,0,NULL,NULL,'PHOTOGRAPHY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 16:45:49','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-11 16:46:18'),(89,'https://flaphotography.com/about/','33:20026c9500ca863e3572ac2b2d698a62',214,'post','page',1,0,NULL,NULL,'ABOUT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15,21,NULL,'2021-09-11 16:51:02','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-09 13:42:53','2021-09-11 16:53:51'),(90,'https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg','88:58e307ca0b866d4b700e6583e7de69ee',218,'post','attachment',1,0,NULL,NULL,'Laptop-photoshop-NEW-Size-1920','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg',NULL,'218','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg','218','attachment-image','{\"width\":1920,\"height\":1280,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Laptop-photoshop-NEW-Size-1920.jpg\",\"size\":\"full\",\"id\":218,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-11 16:52:48','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-11 16:52:48','2021-09-11 16:52:48'),(91,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png','92:0fea3d7941c1d835743c22226d169c0e',219,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA.png',NULL,'219','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1024x1024.png','219','attachment-image','{\"width\":1024,\"height\":1024,\"path\":\"2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1024x1024.png\",\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-BUSINESS-MAN-1500-PX-TRA-SHA-1024x1024.png\",\"size\":\"large\",\"id\":219,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-11 16:52:54','2022-07-12 19:35:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:35:00','2021-09-11 16:52:54'),(133,'https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg','98:98d4e006bfe7a2849f250f6f7259eea2',408,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg',NULL,'408','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg','408','attachment-image','{\"width\":2452,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Pastor-TRA-BLACK-Mo-Colvin-2500px-scaled.jpg\",\"size\":\"full\",\"id\":408,\"alt\":\"\",\"pixels\":6277120,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-13 15:08:33','2022-07-12 19:34:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:41','2021-09-13 15:08:33'),(95,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-09-12 18:41:45','2021-09-12 22:41:45',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(92,'https://flaphotography.com/et_pb_layout/header-menu/','52:bd69b65e0d47cc0380d45b38ffbdcbc1',234,'post','et_pb_layout',1,0,NULL,NULL,'HEADER MENU','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 17:29:04','2022-07-02 19:23:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-02 15:23:54','2021-09-11 17:29:04'),(93,'https://flaphotography.com/et_pb_layout/footer-menu-section/','60:8748237ef809a3c0156a905d179b1f55',235,'post','et_pb_layout',1,0,NULL,NULL,'FOOTER MENU SECTION','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 17:29:37','2021-09-11 21:29:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(94,'https://flaphotography.com/web-graphic-design/','46:b345a38f77dc1b4324ada967a8bb87b3',238,'post','nav_menu_item',1,0,NULL,NULL,'GRAPHIC DESIGN','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-11 17:33:33','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-11 17:33:35'),(99,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png','80:874c6de5d3c339babfb517d34df4e449',260,'post','attachment',1,0,NULL,NULL,'FLAP-PHOTO-LOGO-400PX3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png',NULL,'260','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png','260','attachment-image','{\"width\":400,\"height\":54,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png\",\"size\":\"full\",\"id\":260,\"alt\":\"\",\"pixels\":21600,\"type\":\"image/png\"}',NULL,1,NULL,'2021-09-12 19:37:38','2022-03-24 23:20:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-12 19:37:38','2021-09-12 19:37:38'),(97,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png','79:fe6cb0b26af05c4be79f8d280cb03442',258,'post','attachment',1,0,NULL,NULL,'FLAP-PHOTO-ICON-300PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png',NULL,'258','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png','258','attachment-image','{\"width\":300,\"height\":240,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-ICON-300PX.png\",\"size\":\"full\",\"id\":258,\"alt\":\"\",\"pixels\":72000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2021-09-12 19:14:56','2021-12-06 16:38:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-12 19:14:56','2021-09-12 19:14:56'),(111,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg','81:fdade75b100b44f5cfa5d85b19071e66',309,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg',NULL,'309','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg','309','attachment-image','{\"width\":1378,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-scaled.jpg\",\"size\":\"full\",\"id\":309,\"alt\":\"\",\"pixels\":3527680,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-13 00:15:24','2022-07-12 19:34:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:54','2021-09-13 00:15:24'),(112,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg','79:2c21d431f1dbf2c48bc7f10eb24c3970',311,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg',NULL,'311','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg','311','attachment-image','{\"width\":1561,\"height\":2154,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pX-CROP.jpg\",\"size\":\"full\",\"id\":311,\"alt\":\"\",\"pixels\":3362394,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-13 00:17:49','2022-07-12 19:34:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:56','2021-09-13 00:17:49'),(113,'https://flaphotography.com/359/','31:0c7accc9df93d1d40ca387d38f6dd8eb',359,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-13 01:24:29','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-13 01:24:37'),(114,'https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg','89:09299acbd06a66b7057e3a7d78f061ad',64,'post','attachment',1,0,NULL,NULL,'Set-Photography-2500px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg',NULL,'64','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg','64','attachment-image','{\"width\":1710,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Set-Photography-2500px-scaled-1.jpg\",\"size\":\"full\",\"id\":64,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 01:30:29','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:02:01','2021-09-10 02:02:01'),(115,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg','89:84d4c819ccb418c33fc88d9bc627dec9',65,'post','attachment',1,0,NULL,NULL,'Flow-Marvi-Spark_MG_8496-2500px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg',NULL,'65','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg','65','attachment-image','{\"width\":2466,\"height\":1585,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Flow-Marvi-Spark_MG_8496-2500px.jpg\",\"size\":\"full\",\"id\":65,\"alt\":\"\",\"pixels\":3908610,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 01:30:29','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:02:08','2021-09-10 02:02:08'),(116,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg','86:9b432d3cb72d90e88e362a8eb4ed7ee5',66,'post','attachment',1,0,NULL,NULL,'Flow-presence_MG_8542-2500px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg',NULL,'66','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg','66','attachment-image','{\"width\":2500,\"height\":2181,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Flow-presence_MG_8542-2500px.jpg\",\"size\":\"full\",\"id\":66,\"alt\":\"\",\"pixels\":5452500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 01:30:29','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:02:13','2021-09-10 02:02:13'),(109,'https://flaphotography.com/et_pb_layout/sample-module/','54:daec9b6fb84f81919e59797a73cba885',290,'post','et_pb_layout',1,0,NULL,NULL,'SAMPLE-MODULE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-12 23:30:52','2021-09-13 03:30:52',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(110,'https://flaphotography.com/et_pb_layout/sample-button/','54:66140ee12ef326ec4186b94112d31707',291,'post','et_pb_layout',1,0,NULL,NULL,'SAMPLE-BUTTON','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-12 23:31:42','2021-09-13 03:31:42',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(118,'https://flaphotography.com/et_pb_layout/footer-main/','52:a48e5e1906280218972c32bfcd3669b8',367,'post','et_pb_layout',1,0,NULL,NULL,'FOOTER MAIN','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-13 01:40:29','2022-08-05 23:55:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 19:55:04','2021-09-13 01:40:29'),(120,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg','86:a8b97f098d0c261d42b9d03208297c44',380,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg',NULL,'380','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg','380','attachment-image','{\"width\":1250,\"height\":1992,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/KASSI-STUDIO-SET-SHOT-1200PX.jpg\",\"size\":\"full\",\"id\":380,\"alt\":\"\",\"pixels\":2490000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:14:19','2022-07-12 19:34:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:52','2021-09-13 02:14:19'),(122,'https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg','79:8cb67127cd3bdc7c25c54246ca6fd6c5',13,'post','attachment',1,0,NULL,NULL,'Requel_MG_9336-2500px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg',NULL,'13','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg','13','attachment-image','{\"width\":2500,\"height\":2124,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Requel_MG_9336-2500px.jpg\",\"size\":\"full\",\"id\":13,\"alt\":\"\",\"pixels\":5310000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:28:00','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:16:51','2021-09-10 01:16:51'),(260,'https://flaphotography.com/author/','34:be3d271606d042a44d5b5eb3eae322a0',3,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://1.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://1.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-11-16 01:37:33','2021-11-16 06:37:33',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(127,'https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg','84:1f6cf7012449dccd4042664c6e573767',18,'post','attachment',1,0,NULL,NULL,'Alicia_MG_9295-HEAD-2500PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg',NULL,'18','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg','18','attachment-image','{\"width\":2500,\"height\":2500,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Alicia_MG_9295-HEAD-2500PX.jpg\",\"size\":\"full\",\"id\":18,\"alt\":\"\",\"pixels\":6250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:28:00','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:17:37','2021-09-10 01:17:37'),(128,'https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg','96:c362a793ead482bb42ec577722a810ee',19,'post','attachment',1,0,NULL,NULL,'Communication-team-CROP_MG_9302-2500px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg',NULL,'19','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg','19','attachment-image','{\"width\":2344,\"height\":1507,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Communication-team-CROP_MG_9302-2500px.jpg\",\"size\":\"full\",\"id\":19,\"alt\":\"\",\"pixels\":3532408,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:28:00','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:17:45','2021-09-10 01:17:45'),(129,'https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg','82:e0a1fed2ace0c572d8b9a88fd3ac6e4a',20,'post','attachment',1,0,NULL,NULL,'Tina_MG_9256-HEAD-1500PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg',NULL,'20','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg','20','attachment-image','{\"width\":1500,\"height\":1500,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Tina_MG_9256-HEAD-1500PX.jpg\",\"size\":\"full\",\"id\":20,\"alt\":\"\",\"pixels\":2250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:28:00','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:17:49','2021-09-10 01:17:49'),(215,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg','91:60d7ad57197a83e28dca35099b767fca',646,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg',NULL,'646','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg','646','attachment-image','{\"width\":2259,\"height\":2348,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-4000PX-FREQ2.jpg\",\"size\":\"full\",\"id\":646,\"alt\":\"\",\"pixels\":5304132,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-07 00:15:04','2022-06-29 08:11:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:52','2021-10-07 00:15:04'),(131,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg','112:b95a2f2a2b02caca40775892ffa7530c',392,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg',NULL,'392','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg','392','attachment-image','{\"width\":2259,\"height\":2348,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-4000PX-CROP-scaled-e1632180163485.jpg\",\"size\":\"full\",\"id\":392,\"alt\":\"\",\"pixels\":5304132,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 02:39:27','2022-07-12 19:34:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:49','2021-09-13 02:39:27'),(132,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg','79:e26cb3d67b1a61f11273ceaa4269d79b',402,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg',NULL,'402','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg','402','attachment-image','{\"width\":1560,\"height\":1932,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Marvelous-2000pXCROP2.jpg\",\"size\":\"full\",\"id\":402,\"alt\":\"\",\"pixels\":3013920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-13 02:58:17','2022-07-12 19:34:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:47','2021-09-13 02:58:17'),(134,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg','100:7aee98ddca4a5d1c51027ba06e41201e',44,'post','attachment',1,0,NULL,NULL,'STEPHANIE-IMG_2526-2000PX7-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg',NULL,'44','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg','44','attachment-image','{\"width\":1505,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-2000PX7-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":44,\"alt\":\"\",\"pixels\":3852800,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:12:51','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:03','2021-09-10 01:43:03'),(136,'https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg','91:1161038abc2e05564687507a78e34ffa',414,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg',NULL,'414','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg','414','attachment-image','{\"width\":1803,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Bishop-Couple3_2216-2000px-scaled.jpg\",\"size\":\"full\",\"id\":414,\"alt\":\"\",\"pixels\":4615680,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-13 15:26:43','2022-07-12 19:34:45',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:45','2021-09-13 15:26:43'),(137,'https://flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg','87:88d5bba07639360b08e06a7b013f8299',417,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg',NULL,'417','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg','417','attachment-image','{\"width\":1529,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FAMILY-IMG_2462-2000PX-scaled.jpg\",\"size\":\"full\",\"id\":417,\"alt\":\"\",\"pixels\":3914240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-13 15:35:33','2022-07-12 19:34:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:39','2021-09-13 15:35:33'),(138,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg','105:e8b844eec296744cf3f88344fe2add31',33,'post','attachment',1,0,NULL,NULL,'Young-X-Emperor-IMG_0010-3000px-scaled-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg',NULL,'33','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg','33','attachment-image','{\"width\":1707,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg\",\"size\":\"full\",\"id\":33,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:41:13','2021-09-10 01:41:13'),(139,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg','112:0a83c81729788ab4a6fab2b7e34649bf',34,'post','attachment',1,0,NULL,NULL,'Ash-the-king-and-queen-IMG_0001_3000px-scaled-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg',NULL,'34','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg','34','attachment-image','{\"width\":1988,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-2-scaled.jpg\",\"size\":\"full\",\"id\":34,\"alt\":\"\",\"pixels\":5089280,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:41:20','2021-09-10 01:41:20'),(140,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg','105:d0dc84054b6b549177869463794726a4',35,'post','attachment',1,0,NULL,NULL,'ASH-The-Queen-IMG_0008_1-3000px-scaled-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg',NULL,'35','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg','35','attachment-image','{\"width\":1754,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-2-scaled.jpg\",\"size\":\"full\",\"id\":35,\"alt\":\"\",\"pixels\":4490240,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:41:29','2021-09-10 01:41:29'),(141,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg','113:c6239e9f19718babf82fcc09dbb3dc15',36,'post','attachment',1,0,NULL,NULL,'Young-x-face-IMG_0002_1-No-title-3000px-scaled-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg',NULL,'36','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg','36','attachment-image','{\"width\":1707,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg\",\"size\":\"full\",\"id\":36,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-09-13 15:38:26','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:41:36','2021-09-10 01:41:36'),(142,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg','112:19dd992220cceae72fc63b420b5802c5',37,'post','attachment',1,0,NULL,NULL,'Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg',NULL,'37','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg','37','attachment-image','{\"width\":2560,\"height\":1866,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-2-scaled.jpg\",\"size\":\"full\",\"id\":37,\"alt\":\"\",\"pixels\":4776960,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:41:45','2021-09-10 01:41:45'),(257,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg','94:b542e55b2852c51b566d373af2e93846',817,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg',NULL,'817','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg','817','attachment-image','{\"width\":2560,\"height\":1902,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg\",\"size\":\"full\",\"id\":817,\"alt\":\"\",\"pixels\":4869120,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-21 13:42:56','2022-07-12 19:33:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:22','2021-10-21 13:42:56'),(258,'https://flaphotography.com/et_pb_layout/huge-discount-section/','62:45af38333b23e657198abcb4a00c7fe3',848,'post','et_pb_layout',1,0,NULL,NULL,'HUGE DISCOUNT SECTION','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-10-25 21:42:29','2021-11-03 01:25:42',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(259,'https://flaphotography.com/et_pb_layout/footer-contact-form/','60:87c6d95340699924f541aa5ed2ec092a',860,'post','et_pb_layout',1,0,NULL,NULL,'FOOTER CONTACT FORM','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-10-26 15:50:31','2021-10-26 19:50:31',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(144,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg','98:4f35e32b563a268248b1b262bf1ad42b',39,'post','attachment',1,0,NULL,NULL,'Young-X-Madness-IMG_0016-3000px-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg',NULL,'39','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg','39','attachment-image','{\"width\":2560,\"height\":2415,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg\",\"size\":\"full\",\"id\":39,\"alt\":\"\",\"pixels\":6182400,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-09-13 15:38:26','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:42:13','2021-09-10 01:42:13'),(145,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg','111:7bd283c9695aadd991a6097b7b6a07ed',40,'post','attachment',1,0,NULL,NULL,'The-set-ash-sitting-IMG_0001_4-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg',NULL,'40','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg','40','attachment-image','{\"width\":2560,\"height\":2018,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":40,\"alt\":\"\",\"pixels\":5166080,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-09-13 15:38:26','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:42:23','2021-09-10 01:42:23'),(146,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg','101:9b9bc12c63a728f2bf4a2350334a4bae',45,'post','attachment',1,0,NULL,NULL,'FlowCouple-Glass-IMG_0400-2500px-2-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg',NULL,'45','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg','45','attachment-image','{\"width\":1625,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg\",\"size\":\"full\",\"id\":45,\"alt\":\"\",\"pixels\":4160000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:12','2021-09-10 01:43:12'),(147,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg','103:9c908bd58c1292b050d7d4a0cb05bc8d',46,'post','attachment',1,0,NULL,NULL,'Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg',NULL,'46','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg','46','attachment-image','{\"width\":2123,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg\",\"size\":\"full\",\"id\":46,\"alt\":\"\",\"pixels\":5434880,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:18','2021-09-10 01:43:18'),(148,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg','87:20b3a2847898d236945cdc83c12b9bff',47,'post','attachment',1,0,NULL,NULL,'FLOW-COUPLE-IMG_0415-2500PX-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg',NULL,'47','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg','47','attachment-image','{\"width\":2500,\"height\":2481,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg\",\"size\":\"full\",\"id\":47,\"alt\":\"\",\"pixels\":6202500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:25','2021-09-10 01:43:25'),(149,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg','92:83b42a733c288d615874d854f998812d',48,'post','attachment',1,0,NULL,NULL,'FLOW-THAIRU-LOVE-IMG_0414-2500PX-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg',NULL,'48','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg','48','attachment-image','{\"width\":2500,\"height\":2254,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg\",\"size\":\"full\",\"id\":48,\"alt\":\"\",\"pixels\":5635000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:47','2021-09-10 01:43:47'),(150,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg','101:e1924f8ad0010ba8d0e3e6d8f8e08cf9',49,'post','attachment',1,0,NULL,NULL,'Lovers-shot-IMG_9632-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg',NULL,'49','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg','49','attachment-image','{\"width\":2560,\"height\":1641,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":49,\"alt\":\"\",\"pixels\":4200960,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:55','2021-09-10 01:43:55'),(151,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg','93:7f3843e5bffc86294d1b8375d8072fda',50,'post','attachment',1,0,NULL,NULL,'Dad-mom-Flow-kiss-IMG_0486-2500px-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg',NULL,'50','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg','50','attachment-image','{\"width\":2500,\"height\":1667,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg\",\"size\":\"full\",\"id\":50,\"alt\":\"\",\"pixels\":4167500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:44:03','2021-09-10 01:44:03'),(152,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg','94:548e6a6ea0fbfa80f88100b3aa764acd',51,'post','attachment',1,0,NULL,NULL,'Thairu-mom-IMG_0468-2500px2-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg',NULL,'51','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg','51','attachment-image','{\"width\":1754,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg\",\"size\":\"full\",\"id\":51,\"alt\":\"\",\"pixels\":4490240,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:44:08','2021-09-10 01:44:08'),(153,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg','97:826f72c5464c214f902c126ce71a69b4',52,'post','attachment',1,0,NULL,NULL,'Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg',NULL,'52','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg','52','attachment-image','{\"width\":1740,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg\",\"size\":\"full\",\"id\":52,\"alt\":\"\",\"pixels\":4454400,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:44:15','2021-09-10 01:44:15'),(154,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg','93:eed0a7af92a21ab0b2ef720785e8bc71',53,'post','attachment',1,0,NULL,NULL,'Thairu-Dad-IMG_0448-2500px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg',NULL,'53','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg','53','attachment-image','{\"width\":1707,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg\",\"size\":\"full\",\"id\":53,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-13 15:38:26','2022-03-25 00:28:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:44:38','2021-09-10 01:44:38'),(155,'https://flaphotography.com/430/','31:8ca45b857f32f194d063af95d6de99e8',430,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-13 23:07:53','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2021-09-13 23:08:11'),(156,'https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg','106:588fdd251b7a2e41e77e6a76f2c66fcb',439,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg',NULL,'439','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg','439','attachment-image','{\"width\":2257,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg\",\"size\":\"full\",\"id\":439,\"alt\":\"\",\"pixels\":5777920,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-13 23:21:43','2022-07-12 19:34:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:37','2021-09-13 23:21:43'),(157,'https://flaphotography.com/promotion/','37:a2779f0cfff83807a4739b51a8fbcae4',463,'post','page',1,0,NULL,NULL,'FLAP PROMOTION','private',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15,6,NULL,'2021-09-15 11:21:13','2022-07-31 02:14:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-20 03:05:52','2021-09-15 11:21:13'),(296,'https://flaphotography.com/et_pb_layout/contact-reserv-raw/','59:3638498c500a22b8033e2b4cbc053e30',1132,'post','et_pb_layout',1,0,NULL,NULL,'CONTACT RESERV-RAW','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-20 01:48:46','2021-12-20 06:48:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-20 01:48:46','2021-12-20 01:48:46'),(162,'https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg','98:03b78f3cabd4f112ecc4202c3e2041af',560,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg',NULL,'560','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg','560','attachment-image','{\"width\":2051,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Monique-smile_MG_9348-3000PX2-NEW-scaled.jpg\",\"size\":\"full\",\"id\":560,\"alt\":\"\",\"pixels\":5250560,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-09-18 01:14:15','2022-07-12 19:34:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:35','2021-09-18 01:14:15'),(279,'https://flaphotography.com/et_pb_layout/offer-button/','53:f412fa2a9f89f11716d94a29ef5c0de7',1047,'post','et_pb_layout',1,0,NULL,NULL,'Offer button','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-11 13:59:54','2021-12-11 18:59:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-11 13:59:54','2021-12-11 13:59:54'),(280,'https://flaphotography.com/et_pb_layout/get-offer-button/','57:77f1132783cbf688ea1dab36041aa404',1050,'post','et_pb_layout',1,0,NULL,NULL,'Get offer button','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-11 14:03:06','2021-12-11 19:03:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-11 14:03:06','2021-12-11 14:03:06'),(166,'https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg','90:c2ac5d9ec42d2cf117258fa2ff508e59',567,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg',NULL,'567','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg','567','attachment-image','{\"width\":2235,\"height\":2353,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\",\"size\":\"full\",\"id\":567,\"alt\":\"\",\"pixels\":5258955,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-09-20 02:59:12','2022-07-12 19:34:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:33','2021-09-20 02:59:12'),(170,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg','89:c481c2adfa32765e6a7af1277b365826',573,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg',NULL,'573','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg','573','attachment-image','{\"width\":1761,\"height\":2327,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-M-View-RNW.jpg\",\"size\":\"full\",\"id\":573,\"alt\":\"\",\"pixels\":4097847,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-20 12:43:28','2022-07-12 19:34:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:28','2021-09-20 12:43:28'),(213,'https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg','85:5d3c0c7bcba6d22787f8fd17ca6d6ea2',642,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg',NULL,'642','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg','642','attachment-image','{\"width\":2500,\"height\":2500,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Morlon_MG_9412-HEAD-2500PX2.jpg\",\"size\":\"full\",\"id\":642,\"alt\":\"\",\"pixels\":6250000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-10-06 23:34:37','2022-07-01 02:59:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:58','2021-10-06 23:34:37'),(169,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg','82:290bcb87112f8c400f83ccfec6f47845',572,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg',NULL,'572','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg','572','attachment-image','{\"width\":2482,\"height\":2408,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Lucie_MG_9282-2500px-RNW.jpg\",\"size\":\"full\",\"id\":572,\"alt\":\"\",\"pixels\":5976656,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-20 12:42:30','2022-07-12 19:34:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:31','2021-09-20 12:42:30'),(174,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg','108:13d2017f0c6b0072c0228964e5eea2e1',582,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg',NULL,'582','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg','582','attachment-image','{\"width\":2135,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg\",\"size\":\"full\",\"id\":582,\"alt\":\"\",\"pixels\":5465600,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-20 14:36:50','2022-07-12 19:34:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:34:26','2021-09-20 14:36:50'),(221,'https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg','83:b1965d218e9b38b8f1889e2c91616b7c',658,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg',NULL,'658','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg','658','attachment-image','{\"width\":2000,\"height\":2304,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/LADY-P-IMG_2221-2000PX-FQ.jpg\",\"size\":\"full\",\"id\":658,\"alt\":\"\",\"pixels\":4608000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-07 03:13:21','2022-06-29 08:11:26',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:26','2021-10-07 03:13:21'),(177,'https://flaphotography.com/hello-world/','39:94dc38cd23d13c147e424246f1ca3534',1,'post','post',1,0,NULL,NULL,'Hello world!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-20 20:02:57','2021-12-06 16:59:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:08:58','2021-09-10 01:08:58'),(179,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg','99:ee7c07d0587892166c6ff55f29fe611d',608,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg',NULL,'608','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg','608','attachment-image','{\"width\":1753,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg\",\"size\":\"full\",\"id\":608,\"alt\":\"\",\"pixels\":4487680,\"type\":\"image/jpeg\"}',NULL,3,NULL,'2021-09-20 21:54:42','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:46','2021-09-20 21:54:42'),(180,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg','105:b056e64412f3af437c3ff367aac75b5d',27,'post','attachment',1,0,NULL,NULL,'Young-X-Emperor-IMG_0010-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg',NULL,'27','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg','27','attachment-image','{\"width\":1707,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":27,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:27:43','2021-09-10 01:27:43'),(181,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg','112:8bbb7f70e2350d9717227a7339bb5089',28,'post','attachment',1,0,NULL,NULL,'Ash-the-king-and-queen-IMG_0001_3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg',NULL,'28','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg','28','attachment-image','{\"width\":1988,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":28,\"alt\":\"\",\"pixels\":5089280,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:27:51','2021-09-10 01:27:51'),(182,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg','105:5cf158fb726bad615060ae1dc21b4535',29,'post','attachment',1,0,NULL,NULL,'ASH-The-Queen-IMG_0008_1-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg',NULL,'29','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg','29','attachment-image','{\"width\":1754,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_1-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":29,\"alt\":\"\",\"pixels\":4490240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:28:05','2021-09-10 01:28:05'),(183,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg','113:28b0c455a15e269b4a37a12b76ad69f2',30,'post','attachment',1,0,NULL,NULL,'Young-x-face-IMG_0002_1-No-title-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg',NULL,'30','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg','30','attachment-image','{\"width\":1707,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":30,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:28:13','2021-09-10 01:28:13'),(184,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg','112:384ed131201f824c286bb6e19ed3897d',31,'post','attachment',1,0,NULL,NULL,'Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg',NULL,'31','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg','31','attachment-image','{\"width\":2560,\"height\":1866,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Ash-and-X-The-King-Son-IMG_0022-3000px-scaled-1-scaled.jpg\",\"size\":\"full\",\"id\":31,\"alt\":\"\",\"pixels\":4776960,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:28:24','2021-09-10 01:28:24'),(185,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg','92:93f0687c866c3953311c7e6d84c79d7e',41,'post','attachment',1,0,NULL,NULL,'ANDREW-BOSS-IMG_2437-2000PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg',NULL,'41','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg','41','attachment-image','{\"width\":1888,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/ANDREW-BOSS-IMG_2437-2000PX-scaled.jpg\",\"size\":\"full\",\"id\":41,\"alt\":\"\",\"pixels\":4833280,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:42:34','2021-09-10 01:42:34'),(186,'https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg','86:e9b9ded2182e0dc42368e49cd6a9fe6b',42,'post','attachment',1,0,NULL,NULL,'JOSIAH-IMG_2439-2000PX-FLASH','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg',NULL,'42','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg','42','attachment-image','{\"width\":2000,\"height\":1791,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/JOSIAH-IMG_2439-2000PX-FLASH.jpg\",\"size\":\"full\",\"id\":42,\"alt\":\"\",\"pixels\":3582000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:42:41','2021-09-10 01:42:41'),(187,'https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg','80:2ddc386941ecd03984dda3b5a4874b6a',43,'post','attachment',1,0,NULL,NULL,'BABIES-IMG_2506-2000PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg',NULL,'43','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg','43','attachment-image','{\"width\":2000,\"height\":1304,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/BABIES-IMG_2506-2000PX.jpg\",\"size\":\"full\",\"id\":43,\"alt\":\"\",\"pixels\":2608000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:43:00','2021-09-10 01:43:00'),(188,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg','79:9609d5cae8f2b6831d98e56948362be3',68,'post','attachment',1,0,NULL,NULL,'Flow-Blue-Fade-2000px','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg',NULL,'68','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg','68','attachment-image','{\"width\":2000,\"height\":1518,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Flow-Blue-Fade-2000px.jpg\",\"size\":\"full\",\"id\":68,\"alt\":\"\",\"pixels\":3036000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:02:26','2021-09-10 02:02:26'),(189,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg','98:fadb87181e3271978706aa6d82c5c10e',74,'post','attachment',1,0,NULL,NULL,'Wedding-couple-3-Sky-Replaced-1-scaled-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg',NULL,'74','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg','74','attachment-image','{\"width\":2560,\"height\":1709,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-scaled-1.jpg\",\"size\":\"full\",\"id\":74,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:04:30','2021-09-10 02:04:30'),(190,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png','78:39978ccee097adf0a80975240623aa95',82,'post','attachment',1,0,NULL,NULL,'FotoOPEN-LOGO-2-VERS','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png',NULL,'82','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png','82','attachment-image','{\"width\":800,\"height\":171,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/FotoOPEN-LOGO-2-VERS.png\",\"size\":\"full\",\"id\":82,\"alt\":\"\",\"pixels\":136800,\"type\":\"image/png\"}',NULL,NULL,NULL,'2021-09-21 11:40:22','2021-12-05 05:56:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 02:07:36','2021-09-10 02:07:36'),(201,'https://flaphotography.com/itsec-dash-card/616/','47:daabbc1f44851f9fd640c48ca4041a88',616,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(236,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg','91:502ba03bec8addac9c97710a9d9fd752',747,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg',NULL,'747','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg','747','attachment-image','{\"width\":1858,\"height\":1730,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg\",\"size\":\"full\",\"id\":747,\"alt\":\"\",\"pixels\":3214340,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-16 16:30:29','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:48','2021-10-16 16:30:29'),(233,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg','102:7196cc4b34447be53db55220c8bc7914',723,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg',NULL,'723','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg','723','attachment-image','{\"width\":1986,\"height\":2045,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX-CP1.jpg\",\"size\":\"full\",\"id\":723,\"alt\":\"\",\"pixels\":4061370,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-12 22:28:11','2022-07-12 19:33:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:50','2021-10-12 22:28:11'),(200,'https://flaphotography.com/itsec-dashboard/security-dashboard/','62:0e2c783a50bfdf97a76848d7596f9876',615,'post','itsec-dashboard',1,0,NULL,NULL,'Security Dashboard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(196,'https://flaphotography.com/category/uncategorized/','50:bd939b24e04fc478a2ad74077909f5f7',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-21 11:40:22','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-09-10 01:08:58','2021-09-10 01:08:58'),(197,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-09-21 11:40:22','2021-09-21 15:40:22',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(198,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-09-21 11:40:22','2021-09-21 15:40:22',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(199,'https://flaphotography.com/project/','35:83741c6e7174bd72a3184d02a6756d7e',NULL,'post-type-archive','project',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Projects',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-09-21 11:40:22','2021-09-21 15:40:22',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(202,'https://flaphotography.com/itsec-dash-card/617/','47:40a0fd6350f12129962f94370393a78e',617,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(203,'https://flaphotography.com/itsec-dash-card/618/','47:a46b2da836fb702a0e3ee992e697f765',618,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(204,'https://flaphotography.com/itsec-dash-card/619/','47:2c24c93a744e6956cc0847123b870a14',619,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(205,'https://flaphotography.com/itsec-dash-card/620/','47:63fccc488f9d31a3f530ddd7d4efedcc',620,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(206,'https://flaphotography.com/itsec-dash-card/621/','47:aaf25ed58c6f04f91f277a2808c341e9',621,'post','itsec-dash-card',1,615,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-09-25 15:30:16','2021-09-25 19:30:16',1,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL),(207,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg','94:0cde0f85ae289186fad2383eb3763190',622,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg',NULL,'622','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg','622','attachment-image','{\"width\":1505,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/09/STEPHANIE-IMG_2526-3500PX-RNW-scaled.jpg\",\"size\":\"full\",\"id\":622,\"alt\":\"\",\"pixels\":3852800,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-09-25 15:33:03','2022-06-29 08:12:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:12:02','2021-09-25 15:33:03'),(223,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg','93:0bac5d1004472944cc9e3cc618a98856',662,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg',NULL,'662','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg','662','attachment-image','{\"width\":1696,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-scaled.jpg\",\"size\":\"full\",\"id\":662,\"alt\":\"\",\"pixels\":4341760,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-10-07 03:52:21','2022-06-29 08:11:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:24','2021-10-07 03:52:21'),(210,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg','97:85164197b2d51c57cfbde8110056f7c2',631,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg',NULL,'631','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg','631','attachment-image','{\"width\":1739,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Marvelous-rolling-MG_8545-2000px-scaled.jpg\",\"size\":\"full\",\"id\":631,\"alt\":\"\",\"pixels\":4451840,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-10-04 15:48:30','2022-06-29 08:12:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:12:00','2021-10-04 15:48:30'),(351,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg','83:bbc60b2df94e627baa87aae2c5b395d3',1355,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg',NULL,'1355','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg','1355','attachment-image','{\"width\":2500,\"height\":2202,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Francine-Boss-IMG_6435-CP.jpg\",\"size\":\"full\",\"id\":1355,\"alt\":\"\",\"pixels\":5505000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 02:22:57','2022-07-12 19:38:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:46','2022-07-01 02:22:57'),(214,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg','90:1f172e5d707c16551e3a403cdb819844',644,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg',NULL,'644','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg','644','attachment-image','{\"width\":2500,\"height\":2473,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ.jpg\",\"size\":\"full\",\"id\":644,\"alt\":\"\",\"pixels\":6182500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-06 23:45:33','2022-06-29 08:11:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:55','2021-10-06 23:45:33'),(217,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg','98:a564b2c1b76066e744ba248a366795d3',650,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg',NULL,'650','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg','650','attachment-image','{\"width\":2000,\"height\":2184,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Pastor-Mo-and-Colvin4-IMG_2249-FQ-2000PX.jpg\",\"size\":\"full\",\"id\":650,\"alt\":\"\",\"pixels\":4368000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-07 02:01:51','2022-06-29 08:11:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:50','2021-10-07 02:01:51'),(219,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg','90:576a8ae6920d1b8c85cdfba2688dd54b',654,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg',NULL,'654','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg','654','attachment-image','{\"width\":1391,\"height\":1733,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg\",\"size\":\"full\",\"id\":654,\"alt\":\"\",\"pixels\":2410603,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-07 02:36:33','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:30','2021-10-07 02:36:33'),(220,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg','89:e0db71234f69d17ebefc98718425916e',656,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg',NULL,'656','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg','656','attachment-image','{\"width\":2259,\"height\":2348,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/ANDREW-BOSS-IMG_2437-2000PX-FQ2.jpg\",\"size\":\"full\",\"id\":656,\"alt\":\"\",\"pixels\":5304132,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-10-07 02:56:31','2022-06-29 08:11:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:33','2021-10-07 02:56:31'),(224,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg','93:f04cd9080a5c6106fcf531c4efac5ead',665,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg',NULL,'665','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg','665','attachment-image','{\"width\":1668,\"height\":2310,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg\",\"size\":\"full\",\"id\":665,\"alt\":\"\",\"pixels\":3853080,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-07 13:37:55','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:57','2021-10-07 13:37:55'),(355,'https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg','94:2a3a4ca4f7bc8e46479a02a36a8822cb',1368,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg',NULL,'1368','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg','1368','attachment-image','{\"width\":2500,\"height\":1807,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/RACHEL-BOSS_8544-BLUE-STRONG-2500PX2.jpg\",\"size\":\"full\",\"id\":1368,\"alt\":\"\",\"pixels\":4517500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 02:46:58','2022-07-12 19:36:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:28','2022-07-01 02:46:58'),(226,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg','96:5d3f1cea4ed9cec59e6dacc4ffd0e864',673,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg',NULL,'673','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg','673','attachment-image','{\"width\":1815,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_4142-PR-Suite-2000PX-FQ2-CP-scaled.jpg\",\"size\":\"full\",\"id\":673,\"alt\":\"\",\"pixels\":4646400,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-10-09 22:45:26','2022-07-12 19:33:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:55','2021-10-09 22:45:26'),(227,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg','99:722efb5a159874f9039bd6ec599e0163',676,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg',NULL,'676','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg','676','attachment-image','{\"width\":2560,\"height\":2117,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_4544-1-CNJ-ITS-TIME-4000PX2-CP-scaled.jpg\",\"size\":\"full\",\"id\":676,\"alt\":\"\",\"pixels\":5419520,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-10-09 22:53:40','2022-06-29 08:11:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:19','2021-10-09 22:53:40'),(353,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg','95:fbb47ac9730301dbb3c0c78dd7b9ddac',1363,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg',NULL,'1363','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg','1363','attachment-image','{\"width\":2500,\"height\":2269,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP.jpg\",\"size\":\"full\",\"id\":1363,\"alt\":\"\",\"pixels\":5672500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 02:36:24','2022-07-12 19:38:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:42','2022-07-01 02:36:24'),(230,'https://flaphotography.com/free-studio/','39:767d34a5e319f99367a5674fdad0a581',668,'post','page',1,0,NULL,NULL,'FREE STUDIO TIME','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15,NULL,NULL,'2021-10-09 23:23:52','2021-11-21 19:29:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-10-20 00:48:36','2021-10-09 23:29:11'),(287,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg','75:73d970a7644b042a899c04b1568b3c0d',1084,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg',NULL,'1084','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg','1084','attachment-image','{\"width\":1000,\"height\":508,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg\",\"size\":\"full\",\"id\":1084,\"alt\":\"\",\"pixels\":508000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-12-11 16:31:56','2022-09-16 20:16:46',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:26','2021-12-11 16:31:56'),(237,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg','98:f50a6aef1f689a5c008e9bcab5db28e0',750,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg',NULL,'750','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg','750','attachment-image','{\"width\":1752,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg\",\"size\":\"full\",\"id\":750,\"alt\":\"\",\"pixels\":4485120,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-16 17:43:09','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:45','2021-10-16 17:43:08'),(238,'https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg','84:38790e3a6945c5acb47693173afef9c9',757,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg',NULL,'757','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg','757','attachment-image','{\"width\":1473,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/MG_8545-1-FQ-2000PX-scaled.jpg\",\"size\":\"full\",\"id\":757,\"alt\":\"\",\"pixels\":3770880,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-10-18 00:34:16','2022-07-12 19:33:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:43','2021-10-18 00:34:16'),(239,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg','87:71506b888c39f02ac4ad4edad066951a',760,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg',NULL,'760','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg','760','attachment-image','{\"width\":2560,\"height\":2301,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg\",\"size\":\"full\",\"id\":760,\"alt\":\"\",\"pixels\":5890560,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-18 02:41:17','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:34','2021-10-18 02:41:17'),(242,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg','83:b1d33feae3e85cad5ed676d3be19bdf4',774,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg',NULL,'774','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg','774','attachment-image','{\"width\":1628,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_5330-1-2000px7-scaled.jpg\",\"size\":\"full\",\"id\":774,\"alt\":\"\",\"pixels\":4167680,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-10-18 23:40:30','2022-07-12 19:33:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:31','2021-10-18 23:40:30'),(247,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg','84:470a3fe224059e07ffb3f4cdcca38b52',791,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg',NULL,'791','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg','791','attachment-image','{\"width\":1642,\"height\":1616,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg\",\"size\":\"full\",\"id\":791,\"alt\":\"\",\"pixels\":2653472,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-19 19:07:26','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:27','2021-10-19 19:07:26'),(245,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg','84:08a4615780819717553c6e560a00fff2',783,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg',NULL,'783','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg','783','attachment-image','{\"width\":1675,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg\",\"size\":\"full\",\"id\":783,\"alt\":\"\",\"pixels\":4288000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-19 12:31:18','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:29','2021-10-19 12:31:18'),(250,'https://flaphotography.com/author/','34:be3d271606d042a44d5b5eb3eae322a0',2,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-10-20 01:10:59','2021-10-20 05:10:59',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL),(255,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg','94:b50e8fe46ae7a61c6f7a77ef09d77d21',812,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg',NULL,'812','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg','812','attachment-image','{\"width\":1628,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg\",\"size\":\"full\",\"id\":812,\"alt\":\"\",\"pixels\":4167680,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-20 22:47:51','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:07','2021-10-20 22:47:51'),(254,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg','90:70912571a003654f7dfbbd6e41451417',810,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg',NULL,'810','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg','810','attachment-image','{\"width\":2500,\"height\":2145,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg\",\"size\":\"full\",\"id\":810,\"alt\":\"\",\"pixels\":5362500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-10-20 11:15:14','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:33:25','2021-10-20 11:15:14'),(268,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png','89:1e0708198925cf00a3ba9af1428b8a86',902,'post','attachment',1,0,NULL,NULL,'Flap-Photography-Logo-NW-300px6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',NULL,'902','attachment-image',NULL,NULL,NULL,'902','attachment-image',NULL,NULL,4,NULL,'2021-11-27 05:24:56','2022-07-19 16:39:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-11-27 05:24:56','2021-11-27 05:24:56'),(270,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg','104:7b6d7cb48c7edcb2e6b52929669c8268',906,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg',NULL,'906','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg','906','attachment-image','{\"width\":2171,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Francine-Boss-IMG_6435-6000PX-LIGHTER-2-scaled.jpg\",\"size\":\"full\",\"id\":906,\"alt\":\"\",\"pixels\":5557760,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-12-01 13:10:18','2022-07-01 02:53:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:56','2021-12-01 13:10:18'),(269,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg','110:ca229a032687ef5791dcc0f333163c1c',905,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg',NULL,'905','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg','905','attachment-image','{\"width\":1878,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg\",\"size\":\"full\",\"id\":905,\"alt\":\"\",\"pixels\":4807680,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-12-01 13:09:52','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:11:03','2021-12-01 13:09:52'),(272,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg','108:be7bef4552bc55d8628f92a8318bd88f',909,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg',NULL,'909','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg','909','attachment-image','{\"width\":1796,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg\",\"size\":\"full\",\"id\":909,\"alt\":\"\",\"pixels\":4597760,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-12-01 13:18:18','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-01 20:36:37','2021-12-01 13:18:18'),(348,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg','84:0d67592a2ae60211af581abfbffb63c4',1323,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg',NULL,'1323','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg','1323','attachment-image','{\"width\":800,\"height\":800,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg\",\"size\":\"full\",\"id\":1323,\"alt\":\"\",\"pixels\":640000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-06-29 04:03:42','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:52','2022-06-29 04:03:42'),(273,'https://flaphotography.com/project/','35:83741c6e7174bd72a3184d02a6756d7e',NULL,'post-type-archive','project',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Projects',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-01 13:20:20','2021-12-01 18:20:20',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL),(350,'https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg','93:e262b506c62bf9acb2cc4db324677040',1344,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg',NULL,'1344','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg','1344','attachment-image','{\"width\":2560,\"height\":1632,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/CNJ-VISION-IMG_4553-6000PX-2-scaled.jpg\",\"size\":\"full\",\"id\":1344,\"alt\":\"\",\"pixels\":4177920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 02:02:48','2022-07-12 19:38:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:49','2022-07-01 02:02:48'),(352,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg','92:65439848562614279299583e085d1b6a',1358,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg',NULL,'1358','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg','1358','attachment-image','{\"width\":1500,\"height\":1783,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-1500PX.jpg\",\"size\":\"full\",\"id\":1358,\"alt\":\"\",\"pixels\":2674500,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-07-01 02:28:58','2022-07-12 19:32:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:32:11','2022-07-01 02:28:58'),(274,'https://flaphotography.com/et_pb_layout/price-table-layout/','59:a7a7ff6351b174e18ea0a624ccff21dd',967,'post','et_pb_layout',1,0,NULL,NULL,'price table layout','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-08 17:30:49','2021-12-08 22:30:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 17:30:49','2021-12-08 17:30:49'),(275,'https://flaphotography.com/et_pb_layout/pricing-table-section/','62:81c78cd7a124d00157104b049719339a',982,'post','et_pb_layout',1,0,NULL,NULL,'Pricing table Section','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-08 23:13:47','2021-12-09 04:13:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 23:13:47','2021-12-08 23:13:47'),(276,'https://flaphotography.com/et_pb_layout/pricing-table-section2/','63:ffee06c84c3eb429e56ceb0583d90205',987,'post','et_pb_layout',1,0,NULL,NULL,'Pricing table section2','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-08 23:26:37','2021-12-09 04:26:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-08 23:26:37','2021-12-08 23:26:37'),(277,'https://flaphotography.com/et_pb_layout/pricing-table-dual/','59:8e1c04962081ebeaf66a876cbe933f0c',1015,'post','et_pb_layout',1,0,NULL,NULL,'Pricing table dual','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-09 02:04:14','2021-12-09 07:04:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-09 02:04:14','2021-12-09 02:04:14'),(286,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg','81:e088f4f6f7a6a499b74ef6bd4adf62b1',1063,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg',NULL,'1063','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg','1063','attachment-image','{\"width\":2000,\"height\":2234,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg\",\"size\":\"full\",\"id\":1063,\"alt\":\"\",\"pixels\":4468000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-12-11 14:40:26','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:29','2021-12-11 14:40:26'),(285,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg','94:3334ffa7fa195a4f342daf84d28003ac',1062,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg',NULL,'1062','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg','1062','attachment-image','{\"width\":1910,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg\",\"size\":\"full\",\"id\":1062,\"alt\":\"\",\"pixels\":4889600,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-12-11 14:40:15','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:32','2021-12-11 14:40:15'),(284,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg','91:1edb5f02022665210486214ad3982f5d',1061,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg',NULL,'1061','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg','1061','attachment-image','{\"width\":2000,\"height\":2072,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Faith-Happiness-IMG_6921-2000PX-S.jpg\",\"size\":\"full\",\"id\":1061,\"alt\":\"\",\"pixels\":4144000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-12-11 14:40:07','2022-07-01 20:28:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:35','2021-12-11 14:40:07'),(288,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg','85:3f9e6c6c7936a8705968b991eea534c3',1104,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg',NULL,'1104','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg','1104','attachment-image','{\"width\":1300,\"height\":1300,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg\",\"size\":\"full\",\"id\":1104,\"alt\":\"\",\"pixels\":1690000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-12-19 02:04:37','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:17','2021-12-19 02:04:37'),(289,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg','82:87911f7f3f8957ee2c5b990316681379',1105,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg',NULL,'1105','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg','1105','attachment-image','{\"width\":1300,\"height\":1300,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg\",\"size\":\"full\",\"id\":1105,\"alt\":\"\",\"pixels\":1690000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-12-19 02:05:34','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:10:15','2021-12-19 02:05:34'),(290,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg','87:21dbc14629e3b268e11fcfa75242c64e',1110,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg',NULL,'1110','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg','1110','attachment-image','{\"width\":1500,\"height\":1580,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-1500PX-CROP8-2.jpg\",\"size\":\"full\",\"id\":1110,\"alt\":\"\",\"pixels\":2370000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-12-19 02:18:19','2022-07-01 20:38:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-01 20:26:06','2021-12-19 02:18:19'),(292,'https://flaphotography.com/?post_type=divi_bars&p=1114','54:4bff763232fa9a1a9847a26a7ff10368',1114,'post','divi_bars',1,0,NULL,NULL,'20 OFF SALE','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-12-19 02:45:16','2022-09-08 16:34:19',1,NULL,NULL,NULL,NULL,0,1,2,'2022-09-08 12:34:19','2021-12-19 02:49:39'),(293,'https://flaphotography.com/divi_bars/','37:ba8cf50a8e0c31457f8937c22cce6a0e',NULL,'post-type-archive','divi_bars',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Divi Bars',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-19 02:45:23','2022-09-08 16:31:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-08 12:31:10',NULL),(295,'https://flaphotography.com/et_pb_layout/reservation-contact-section/','68:5077f13abc500a0eae81c80ff1f4b185',1131,'post','et_pb_layout',1,0,NULL,NULL,'RESERVATION CONTACT SECTION','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-20 01:47:59','2021-12-20 06:47:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-20 01:47:59','2021-12-20 01:47:59'),(297,'https://flaphotography.com/divi_overlay/branding-photography-contact/','69:5d4e86b896fc57b20f273c92562c6d0a',1133,'post','divi_overlay',1,0,NULL,NULL,'Branding Photography Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-20 01:58:44','2022-09-17 00:16:50',1,NULL,NULL,NULL,NULL,0,2,2,'2022-09-16 20:16:49','2021-12-20 01:59:31'),(298,'https://flaphotography.com/divi_overlay/','40:8121f252f20254253b57cf97c6164a57',NULL,'post-type-archive','divi_overlay',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Divi Overlays',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-12-20 01:58:48','2022-09-17 00:16:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-09-16 20:16:49',NULL),(299,'https://flaphotography.com/divi_overlay/fashion-photography-contact/','68:df175843203bebc4b238bf199445f7ec',1137,'post','divi_overlay',1,0,NULL,NULL,'Fashion Photography Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-12-20 02:46:06','2022-07-03 01:22:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-02 21:22:12','2021-12-20 02:47:07'),(300,'https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg','86:91855b79b43038ab2443aa5bdcc2912d',1140,'post','attachment',1,1137,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg',NULL,'1140','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg','1140','attachment-image','{\"width\":1500,\"height\":704,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg\",\"size\":\"full\",\"id\":1140,\"alt\":\"\",\"pixels\":1056000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-12-20 02:46:53','2022-07-12 19:32:29',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-07-12 15:32:29','2021-12-20 02:46:53'),(301,'https://flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg','90:fe8cdd560e2524177bd4f3bf73090a2b',1147,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg',NULL,'1147','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg','1147','attachment-image','{\"width\":2235,\"height\":2209,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/Meranda_MG_9390-2500PX-RNEW-CROP.jpg\",\"size\":\"full\",\"id\":1147,\"alt\":\"\",\"pixels\":4937115,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-12-20 03:12:49','2022-06-29 08:09:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:55','2021-12-20 03:12:49'),(302,'https://flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg','79:1899446d256e41eefcfced0e6c6a1102',1148,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg',NULL,'1148','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg','1148','attachment-image','{\"width\":1300,\"height\":1300,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/JAMIE-IMG_7372-1300PX.jpg\",\"size\":\"full\",\"id\":1148,\"alt\":\"\",\"pixels\":1690000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-12-20 03:19:20','2022-06-29 08:09:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:53','2021-12-20 03:19:20'),(303,'https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg','80:5b86fa277d9ce6b3c2eac1e9c2194095',1149,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg',NULL,'1149','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg','1149','attachment-image','{\"width\":1300,\"height\":1300,\"url\":\"https://flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2021/12/ADRIAN-IMG_7328-1300px.jpg\",\"size\":\"full\",\"id\":1149,\"alt\":\"\",\"pixels\":1690000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2021-12-20 03:20:10','2022-07-01 03:04:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:50','2021-12-20 03:20:10'),(305,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg','92:61508959595e9cc26d9c78643bfafafd',1158,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg',NULL,'1158','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg','1158','attachment-image','{\"width\":900,\"height\":1531,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg\",\"size\":\"full\",\"id\":1158,\"alt\":\"\",\"pixels\":1377900,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 02:56:54','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:59','2022-03-24 02:56:54'),(331,'https://flaphotography.com/wp-content/uploads/2022/03/20-OFF-PROMO-NEW-as-of-MAR-24-FINAL.mp4','93:9435ba4becf963b0bbe5f2acada4ac41',1243,'post','attachment',1,0,NULL,NULL,'20 OFF-PROMO-NEW-as of MAR 24-FINAL','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-03-25 01:03:06','2022-03-25 05:03:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 01:03:06','2022-03-25 01:03:06'),(308,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg','93:e9e3037c2992ed24c774ffc168cece1a',1172,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg',NULL,'1172','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg','1172','attachment-image','{\"width\":900,\"height\":899,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg\",\"size\":\"full\",\"id\":1172,\"alt\":\"\",\"pixels\":809100,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 14:14:21','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:48','2022-03-24 14:14:21'),(309,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg','95:da9a5ca40c9a09d3db8c455a3926437b',1173,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg',NULL,'1173','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg','1173','attachment-image','{\"width\":900,\"height\":854,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/RACHEL-GLANCE-WIDE-RED-PUR-8535-900PX.jpg\",\"size\":\"full\",\"id\":1173,\"alt\":\"\",\"pixels\":768600,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-03-24 14:17:48','2022-07-01 02:29:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:45','2022-03-24 14:17:48'),(311,'https://flaphotography.com/et_pb_layout/production-section/','59:675d1d49167b231becbbb5a87ac29ade',1186,'post','et_pb_layout',1,0,NULL,NULL,'Production section','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-24 23:14:58','2022-03-25 03:14:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-24 23:14:58','2022-03-24 23:14:58'),(312,'https://flaphotography.com/et_pb_layout/production-header/','58:3b65d081878def0e55681dd5a744112e',1187,'post','et_pb_layout',1,0,NULL,NULL,'Production header','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-24 23:15:19','2022-03-25 03:15:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-24 23:15:19','2022-03-24 23:15:19'),(313,'https://flaphotography.com/products-photography/','48:0f71d57c1d4a8f35caeefa27eba69bcf',1188,'post','page',1,0,NULL,NULL,'PRODUCTS PHOTOGRAPHY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,25,14,NULL,'2022-03-24 23:17:04','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-21 14:32:01','2022-03-24 23:17:34'),(314,'https://flaphotography.com/et_pb_layout/header-product/','55:8ce7452526d7b8e863fcc50c9adf58b1',1193,'post','et_pb_layout',1,0,NULL,NULL,'Header product','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-24 23:20:44','2022-03-25 03:20:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-24 23:20:44','2022-03-24 23:20:44'),(315,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg','90:d11166d76bff59d940824e35befc1c6e',1198,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg',NULL,'1198','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg','1198','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg\",\"size\":\"full\",\"id\":1198,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:24','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-19 16:31:21','2022-03-24 23:33:24'),(316,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg','86:8399818ba39b86d5064602858d60c029',1199,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg',NULL,'1199','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg','1199','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg\",\"size\":\"full\",\"id\":1199,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:29','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:07:53','2022-03-24 23:33:29'),(317,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg','93:4b097fe9c850c3fba42d669340071f8f',1200,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg',NULL,'1200','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg','1200','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg\",\"size\":\"full\",\"id\":1200,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:31','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:20','2022-03-24 23:33:31'),(318,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg','84:43c3f5f6930a3e732537b6ef06212cc3',1201,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg',NULL,'1201','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg','1201','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg\",\"size\":\"full\",\"id\":1201,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:34','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:17','2022-03-24 23:33:34'),(319,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg','95:86cc052b22a1babf2754fae42e1907a1',1202,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg',NULL,'1202','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg','1202','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-CLOSED-5886-900pX3.jpg\",\"size\":\"full\",\"id\":1202,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-03-24 23:33:36','2022-03-25 04:08:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:13','2022-03-24 23:33:36'),(320,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg','93:a74d4effaaa0285f00f3c27012a0b908',1203,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg',NULL,'1203','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg','1203','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg\",\"size\":\"full\",\"id\":1203,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:38','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:10','2022-03-24 23:33:38'),(321,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg','89:2182ee259116a0a89a65137de542e79d',1204,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg',NULL,'1204','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg','1204','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg\",\"size\":\"full\",\"id\":1204,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:33:41','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:07','2022-03-24 23:33:41'),(322,'https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg','92:7c00ad24c5a6cc863ed7255cb3e9e3e3',1205,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg',NULL,'1205','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg','1205','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/TRIPLE-BODY-BUTTER-IMG_5919-900PX3.jpg\",\"size\":\"full\",\"id\":1205,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-03-24 23:33:43','2022-03-25 04:08:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:04','2022-03-24 23:33:43'),(323,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg','81:2037f209cb4a2eb141eda703a7811bca',1206,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg',NULL,'1206','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg','1206','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/TURMERIC-IMG_5902-900PX.jpg\",\"size\":\"full\",\"id\":1206,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-03-24 23:33:46','2022-03-25 04:08:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:08:01','2022-03-24 23:33:46'),(325,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg','90:12b822ffcc84486d76b5976a2b95d292',1212,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg',NULL,'1212','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg','1212','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg\",\"size\":\"full\",\"id\":1212,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-24 23:47:13','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:07:57','2022-03-24 23:47:13'),(329,'https://flaphotography.com/et_pb_layout/images-temp/','52:8e17739fc7119cb285f054df38cd132d',1234,'post','et_pb_layout',1,0,NULL,NULL,'IMAGES-TEMP','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-25 00:28:19','2022-03-25 04:28:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:28:19','2022-03-25 00:28:19'),(326,'https://flaphotography.com/et_pb_layout/products-section-img-md/','64:c923f9f859e6f607f82085d4d03e46ae',1224,'post','et_pb_layout',1,0,NULL,NULL,'Products Section-IMG MD','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-25 00:12:44','2022-03-25 04:12:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:12:44','2022-03-25 00:12:44'),(327,'https://flaphotography.com/products-photography/','48:0f71d57c1d4a8f35caeefa27eba69bcf',1230,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-25 00:23:33','2022-03-25 04:25:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-03-25 00:25:49','2022-03-25 00:24:31'),(328,'https://flaphotography.com/?p=1231','34:7f77aeb1c36e6d95238b42ba97f7cc4b',1231,'post','nav_menu_item',1,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-03-25 00:23:44','2022-03-25 04:23:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(330,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg','84:5204127211d2f645b1bc83aa4a6b674b',1240,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg',NULL,'1240','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg','1240','attachment-image','{\"width\":900,\"height\":669,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg\",\"size\":\"full\",\"id\":1240,\"alt\":\"\",\"pixels\":602100,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-03-25 00:52:03','2022-07-31 03:07:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:32:17','2022-03-25 00:52:03'),(334,'https://flaphotography.com/et_pb_layout/header-corporate-temp/','62:223f1ae4eee4488a76ea16c1fa620363',1261,'post','et_pb_layout',1,0,NULL,NULL,'HEADER-CORPORATE-TEMP','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-06-26 23:31:22','2022-06-27 03:31:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-26 23:31:22','2022-06-26 23:31:22'),(367,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png','88:732311210c2e57f14fa2005c34899b92',1463,'post','attachment',1,0,NULL,NULL,'KCJ-Photography-BLA-Logo-300PX','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',NULL,'1463','attachment-image',NULL,NULL,NULL,'1463','attachment-image',NULL,NULL,6,NULL,'2022-07-02 15:23:45','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-02 15:23:45','2022-07-02 15:23:45'),(342,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg','86:d5e93953c603d6435aea0de7202020f1',1290,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg',NULL,'1290','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg','1290','attachment-image','{\"width\":1500,\"height\":2022,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg\",\"size\":\"full\",\"id\":1290,\"alt\":\"\",\"pixels\":3033000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-06-29 02:26:14','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-18 00:17:09','2022-06-29 02:26:14'),(346,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg','92:03d7dc8d8369f834357005edfbdd888f',1302,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg',NULL,'1302','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg','1302','attachment-image','{\"width\":1500,\"height\":2151,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg\",\"size\":\"full\",\"id\":1302,\"alt\":\"\",\"pixels\":3226500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-06-29 03:17:38','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:33','2022-06-29 03:17:38'),(401,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg','90:d6c3ecb180b556016c24eb11708eb300',1620,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg',NULL,'1620','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg','1620','attachment-image','{\"width\":1500,\"height\":1702,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IDRAS-BENCH-LEAN-IMG_1484-1500px.jpg\",\"size\":\"full\",\"id\":1620,\"alt\":\"\",\"pixels\":2553000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-07-30 01:09:45','2022-08-01 06:26:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-30 01:10:00','2022-07-30 01:09:45'),(347,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg','90:b3afe43911709ec0969ba59d8b1a7b31',1305,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg',NULL,'1305','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg','1305','attachment-image','{\"width\":1500,\"height\":2115,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/06/IMG_4544-1-CNJ-ITS-TIME-1500pxc1.jpg\",\"size\":\"full\",\"id\":1305,\"alt\":\"\",\"pixels\":3172500,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-06-29 03:25:26','2022-07-09 04:43:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-06-29 04:09:29','2022-06-29 03:25:26'),(357,'https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg','94:e27de7dbcb54297b38b4d61507b71385',1380,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg',NULL,'1380','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg','1380','attachment-image','{\"width\":2500,\"height\":1461,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Flow-presence_MG_8542-1-FQ-2500PX-CP.jpg\",\"size\":\"full\",\"id\":1380,\"alt\":\"\",\"pixels\":3652500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 03:19:10','2022-07-12 19:36:24',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:24','2022-07-01 03:19:10'),(359,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg','93:b88a5e7d4e28edfd3719476af2840f92',1385,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg',NULL,'1385','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg','1385','attachment-image','{\"width\":2500,\"height\":1431,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-CP2.jpg\",\"size\":\"full\",\"id\":1385,\"alt\":\"\",\"pixels\":3577500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 03:29:46','2022-07-12 19:36:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:20','2022-07-01 03:29:46'),(360,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg','100:67d99420dcc561cdbe648c10d1200595',1387,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg',NULL,'1387','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg','1387','attachment-image','{\"width\":2000,\"height\":1939,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB-SLIDER.jpg\",\"size\":\"full\",\"id\":1387,\"alt\":\"\",\"pixels\":3878000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 03:40:15','2022-07-12 19:38:36',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:36','2022-07-01 03:40:15'),(361,'https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg','84:ea507d6496d7f118657aef899dd57cdd',1392,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg',NULL,'1392','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg','1392','attachment-image','{\"width\":2560,\"height\":1526,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/GRACE-IMG_5248-1-2500PX-CP.jpg\",\"size\":\"full\",\"id\":1392,\"alt\":\"\",\"pixels\":3906560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 03:53:56','2022-07-12 19:29:17',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:29:17','2022-07-01 03:53:56'),(362,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg','92:c1f177198d33a7abcd41be629280229a',1395,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg',NULL,'1395','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg','1395','attachment-image','{\"width\":2500,\"height\":1702,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2500PX-CP.jpg\",\"size\":\"full\",\"id\":1395,\"alt\":\"\",\"pixels\":4255000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 04:02:20','2022-07-12 19:36:18',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:18','2022-07-01 04:02:20'),(363,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg','89:40ca7b6e41a26ad94d149eb5edae481d',1396,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg',NULL,'1396','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg','1396','attachment-image','{\"width\":2560,\"height\":2415,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Young-X-Madness-IMG_0016-2000PX.jpg\",\"size\":\"full\",\"id\":1396,\"alt\":\"\",\"pixels\":6182400,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 04:03:17','2022-07-12 19:36:14',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:14','2022-07-01 04:03:17'),(364,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg','85:dc4a7e1932c79f722cc568699f169e25',1404,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg',NULL,'1404','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg','1404','attachment-image','{\"width\":2000,\"height\":1296,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IMG_4142-PR-Suite-2000PX-CP.jpg\",\"size\":\"full\",\"id\":1404,\"alt\":\"\",\"pixels\":2592000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-01 04:29:30','2022-07-12 19:36:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:12','2022-07-01 04:29:30'),(366,'https://flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg','84:3941aee4ab70cfd964a9f632cb84d8eb',1420,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg',NULL,'1420','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg','1420','attachment-image','{\"width\":1500,\"height\":1926,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Daddy-Boss-IMG_1000-1500PX.jpg\",\"size\":\"full\",\"id\":1420,\"alt\":\"\",\"pixels\":2889000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-07-01 20:27:15','2022-07-12 19:31:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:31:58','2022-07-01 20:27:15'),(368,'https://flaphotography.com/divi_overlay/personalized-reservation/','65:6b578a2b10ff2e66fb9fb81eb82814fd',1483,'post','divi_overlay',1,0,NULL,NULL,'Personalized Reservation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-02 20:21:08','2022-09-15 23:50:30',1,NULL,NULL,NULL,NULL,0,2,2,'2022-09-15 19:50:30','2022-07-02 20:24:04'),(369,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg','97:3b8d46f36b33f6f7a3c6ec7358196200',1508,'post','attachment',1,1483,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg',NULL,'1508','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg','1508','attachment-image','{\"width\":2499,\"height\":1676,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg\",\"size\":\"full\",\"id\":1508,\"alt\":\"\",\"pixels\":4188324,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-02 21:53:02','2022-09-15 19:50:26',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-07-02 21:53:48','2022-07-02 21:53:02'),(370,'https://flaphotography.com/divi_overlay/personalized-photography/','65:de460f69f5251335692a4a541fcf83d8',1518,'post','divi_overlay',1,0,NULL,NULL,'Personalized Photography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-03 02:26:01','2022-07-03 06:35:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-03 02:35:18','2022-07-03 02:29:48'),(371,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg','93:f381f315cf80385219daa76eb42f5d74',1523,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg',NULL,'1523','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg','1523','attachment-image','{\"width\":1628,\"height\":1929,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Noelle-Headshot-IMG_5345-2500PX-MOB.jpg\",\"size\":\"full\",\"id\":1523,\"alt\":\"\",\"pixels\":3140412,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-03 02:46:37','2022-07-12 19:32:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:32:00','2022-07-03 02:46:37'),(372,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg','86:a439e134ab84fd4cbf3940d9c977a1bd',1529,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg',NULL,'1529','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg','1529','attachment-image','{\"width\":2066,\"height\":1982,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000-Crop.jpg\",\"size\":\"full\",\"id\":1529,\"alt\":\"\",\"pixels\":4094812,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-03 03:04:42','2022-07-12 19:36:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:47','2022-07-03 03:04:42'),(374,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg','90:c0903960add4e64e06c79af0e9d20694',1531,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg',NULL,'1531','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg','1531','attachment-image','{\"width\":2560,\"height\":1707,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/ASH-LeanIMG_0004_2-3000px-scaled.jpg\",\"size\":\"full\",\"id\":1531,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-03 03:10:09','2022-07-12 19:36:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:36:44','2022-07-03 03:10:09'),(375,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg','85:e1779ac4e1ec4240486583908f675b23',1534,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg',NULL,'1534','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg','1534','attachment-image','{\"width\":714,\"height\":669,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/ASH-GAZE-IMG_0003_700PX-MOB.jpg\",\"size\":\"full\",\"id\":1534,\"alt\":\"\",\"pixels\":477666,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-03 03:19:48','2022-07-12 19:26:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:26:03','2022-07-03 03:19:48'),(376,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg','85:4f7e42ad9c7748bbea54ed5b281ddbf7',1538,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg',NULL,'1538','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg','1538','attachment-image','{\"width\":1500,\"height\":1292,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg\",\"size\":\"full\",\"id\":1538,\"alt\":\"\",\"pixels\":1938000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-05 00:39:53','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:38:02','2022-07-05 00:39:53'),(377,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg','80:213c199550fc88ae36dc2d2b4c95839e',1539,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg',NULL,'1539','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg','1539','attachment-image','{\"width\":1500,\"height\":1466,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg\",\"size\":\"full\",\"id\":1539,\"alt\":\"\",\"pixels\":2199000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-05 00:39:58','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:31:56','2022-07-05 00:39:58'),(379,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg','90:d2f104d9cac8351ddd7f2a1f7dbf0767',1549,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg',NULL,'1549','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg','1549','attachment-image','{\"width\":2500,\"height\":1635,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IMG_4544-1-CNJ-ITS-TIME-2500pxCP.jpg\",\"size\":\"full\",\"id\":1549,\"alt\":\"\",\"pixels\":4087500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-06 00:32:04','2022-07-12 19:25:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:25:59','2022-07-06 00:32:04'),(380,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg','93:08ce939748928f8bc68583a43cc86e72',1563,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg',NULL,'1563','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg','1563','attachment-image','{\"width\":2500,\"height\":1876,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-2500px-cp.jpg\",\"size\":\"full\",\"id\":1563,\"alt\":\"\",\"pixels\":4690000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-09 04:38:20','2022-07-12 19:25:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:25:53','2022-07-09 04:38:20'),(381,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg','90:8fd5c73d9e835c3bf204a908de248806',1564,'post','attachment',1,9,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg',NULL,'1564','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg','1564','attachment-image','{\"width\":1500,\"height\":2260,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX.jpg\",\"size\":\"full\",\"id\":1564,\"alt\":\"\",\"pixels\":3390000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-09 04:41:31','2022-07-12 19:25:50',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-07-12 15:25:50','2022-07-09 04:41:31'),(382,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg','92:75ed92b086bb9e77efbc1848bcb2e645',1565,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg',NULL,'1565','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg','1565','attachment-image','{\"width\":1500,\"height\":2260,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG_4145-1500PX-1.jpg\",\"size\":\"full\",\"id\":1565,\"alt\":\"\",\"pixels\":3390000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-07-09 04:42:14','2022-07-12 19:25:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:25:48','2022-07-09 04:42:14'),(384,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg','93:e859f398d98a845674991ad8916f7af3',1569,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg',NULL,'1569','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg','1569','attachment-image','{\"width\":2500,\"height\":1400,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-HopePage-2500px-CP.jpg\",\"size\":\"full\",\"id\":1569,\"alt\":\"\",\"pixels\":3500000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-10 00:57:34','2022-07-12 19:26:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:26:13','2022-07-10 00:57:34'),(388,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg','91:5fec3d22fd6219f85621ee74d2ddc3a7',1577,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg',NULL,'1577','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg','1577','attachment-image','{\"width\":1500,\"height\":2187,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg\",\"size\":\"full\",\"id\":1577,\"alt\":\"\",\"pixels\":3280500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-11 21:44:53','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:26:18','2022-07-11 21:44:53'),(387,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg','93:428f22a1b77b642da323c2465c27a48f',1575,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg',NULL,'1575','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg','1575','attachment-image','{\"width\":2143,\"height\":2560,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg\",\"size\":\"full\",\"id\":1575,\"alt\":\"\",\"pixels\":5486080,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2022-07-11 15:38:14','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-12 15:26:15','2022-07-11 15:38:14'),(389,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg','89:a64c005f6866eafd45d7c4662dde0793',1583,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg',NULL,'1583','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg','1583','attachment-image','{\"width\":1500,\"height\":1178,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg\",\"size\":\"full\",\"id\":1583,\"alt\":\"\",\"pixels\":1767000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-18 00:19:21','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-13 03:46:20','2022-07-18 00:19:21'),(390,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg','90:32618bba1208dcaf0ca277418420db58',1584,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg',NULL,'1584','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg','1584','attachment-image','{\"width\":1500,\"height\":1195,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg\",\"size\":\"full\",\"id\":1584,\"alt\":\"\",\"pixels\":1792500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-18 00:19:26','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-18 01:27:07','2022-07-18 00:19:26'),(391,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg','89:4624ff1d405052439a5caff4d377534c',1585,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg',NULL,'1585','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg','1585','attachment-image','{\"width\":1500,\"height\":2103,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg\",\"size\":\"full\",\"id\":1585,\"alt\":\"\",\"pixels\":3154500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-18 00:19:31','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-18 01:27:04','2022-07-18 00:19:31'),(392,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg','88:91392c7a3fe3421778482bbd5a0cd404',1592,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg',NULL,'1592','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg','1592','attachment-image','{\"width\":1500,\"height\":1244,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg\",\"size\":\"full\",\"id\":1592,\"alt\":\"\",\"pixels\":1866000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-18 01:18:19','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-18 01:27:01','2022-07-18 01:18:19'),(393,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg','81:6b90359b82d077c0e80ca752913297ef',1600,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg',NULL,'1600','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg','1600','attachment-image','{\"width\":1500,\"height\":1500,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg\",\"size\":\"full\",\"id\":1600,\"alt\":\"\",\"pixels\":2250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-19 16:37:56','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-19 16:38:47','2022-07-19 16:37:56'),(394,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg','81:92862a4fed494862cd1efe298f474259',1601,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg',NULL,'1601','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg','1601','attachment-image','{\"width\":1500,\"height\":1500,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg\",\"size\":\"full\",\"id\":1601,\"alt\":\"\",\"pixels\":2250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-19 16:38:01','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-19 16:38:43','2022-07-19 16:38:01'),(395,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg','84:ee833422767d0fa9df2a056ac94ed87d',1602,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg',NULL,'1602','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg','1602','attachment-image','{\"width\":1500,\"height\":1500,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg\",\"size\":\"full\",\"id\":1602,\"alt\":\"\",\"pixels\":2250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-19 16:38:06','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-19 16:38:41','2022-07-19 16:38:06'),(396,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg','77:bbeb49a6a86c2c4daa2276c23f4af599',1603,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg',NULL,'1603','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg','1603','attachment-image','{\"width\":1500,\"height\":1500,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg\",\"size\":\"full\",\"id\":1603,\"alt\":\"\",\"pixels\":2250000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-19 16:38:11','2022-07-21 14:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-19 16:38:39','2022-07-19 16:38:11'),(397,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg','83:3d4985159ece124bc558336ebbd26226',1610,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg',NULL,'1610','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg','1610','attachment-image','{\"width\":1500,\"height\":1963,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg\",\"size\":\"full\",\"id\":1610,\"alt\":\"\",\"pixels\":2944500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-29 13:39:29','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-29 17:41:13','2022-07-29 13:39:29'),(398,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg','87:14b4b1350fe254966f9a423917b330db',1611,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg',NULL,'1611','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg','1611','attachment-image','{\"width\":1500,\"height\":2006,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IDRAS-SUCESS-IMG_1420-1500px2.jpg\",\"size\":\"full\",\"id\":1611,\"alt\":\"\",\"pixels\":3009000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-07-29 13:39:36','2022-07-29 17:41:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-29 13:39:53','2022-07-29 13:39:36'),(399,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg','87:08df3fad4a6ab5632101b18d7ed1b8e0',1614,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg',NULL,'1614','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg','1614','attachment-image','{\"width\":1500,\"height\":1970,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg\",\"size\":\"full\",\"id\":1614,\"alt\":\"\",\"pixels\":2955000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-29 17:41:04','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-30 01:15:12','2022-07-29 17:41:04'),(400,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg','84:7493faefc42f0c73928a3f63f218e872',1617,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg',NULL,'1617','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg','1617','attachment-image','{\"width\":1500,\"height\":2072,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg\",\"size\":\"full\",\"id\":1617,\"alt\":\"\",\"pixels\":3108000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-07-30 00:15:59','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-07-30 00:16:44','2022-07-30 00:15:59'),(411,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg','94:e89f0a6bda99d965a444a8c1ce6a7bff',1695,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg',NULL,'1695','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg','1695','attachment-image','{\"width\":1500,\"height\":2243,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg\",\"size\":\"full\",\"id\":1695,\"alt\":\"\",\"pixels\":3364500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-01 05:58:21','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-01 05:58:56','2022-08-01 05:58:21'),(428,'https://flaphotography.com/wp-content/uploads/2022/08/Studio-Set-Francine-Cocoa-Red-FINAL.mp4','93:90f98bba35bcf05555a1be683ba0cba8',1735,'post','attachment',1,0,NULL,NULL,'Studio Set Francine Cocoa Red-FINAL','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-05 19:54:13','2022-08-05 23:54:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 19:54:13','2022-08-05 19:54:13'),(406,'https://flaphotography.com/auto-draft/','38:dc8fe355d029f43d9d5123f8405325bf',1646,'post','page',1,0,NULL,NULL,'Auto Draft','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,NULL,NULL,'2022-07-31 02:10:31','2022-07-31 06:14:32',1,NULL,NULL,NULL,NULL,0,0,2,'2022-07-31 02:14:32','2022-07-31 02:14:28'),(407,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg','86:44ac76cb39478c7ad76dca26bfe8396f',1649,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg',NULL,'1649','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg','1649','attachment-image','{\"width\":1849,\"height\":2509,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/07/IMG_4526-1-LOOK-FINAL-2000PX.jpg\",\"size\":\"full\",\"id\":1649,\"alt\":\"\",\"pixels\":4639141,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2022-07-31 02:13:24','2022-08-01 10:25:32',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-01 06:25:32','2022-07-31 02:13:24'),(408,'https://flaphotography.com/et_pb_layout/studio-set-video-section/','65:2e598916999a72245da199e420019b7c',1659,'post','et_pb_layout',1,0,NULL,NULL,'Studio Set Video-Section','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-31 02:35:21','2022-08-05 23:54:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 19:54:29','2022-07-31 02:35:21'),(409,'https://flaphotography.com/et_pb_layout/studio-set-video-mobile/','64:79d6ae0d2baa25ad6bb16ea5225943bf',1660,'post','et_pb_layout',1,0,NULL,NULL,'Studio Set Video-Mobile','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-31 02:36:04','2022-08-05 23:54:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 19:54:51','2022-07-31 02:36:04'),(412,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg','94:ce024e5f84e6cfbce27ca3569ddfc84f',1696,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg',NULL,'1696','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg','1696','attachment-image','{\"width\":1500,\"height\":2343,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg\",\"size\":\"full\",\"id\":1696,\"alt\":\"\",\"pixels\":3514500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-01 05:58:29','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-01 05:58:54','2022-08-01 05:58:29'),(433,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg','87:eb7a3f26c4622d5e27af2ce90ed8e136',1751,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg',NULL,'1751','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg','1751','attachment-image','{\"width\":1500,\"height\":1378,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg\",\"size\":\"full\",\"id\":1751,\"alt\":\"\",\"pixels\":2067000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-13 03:46:07','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-13 03:46:24','2022-08-13 03:46:07'),(413,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg','85:5450e5a46b617383f618273842c05fd4',1699,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg',NULL,'1699','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg','1699','attachment-image','{\"width\":1500,\"height\":2051,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/IDRAS-STYLE-IMG_1464-1500PX.jpg\",\"size\":\"full\",\"id\":1699,\"alt\":\"\",\"pixels\":3076500,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-01 06:25:04','2022-08-06 16:13:54',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-01 06:25:23','2022-08-01 06:25:04'),(422,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg','96:8201f9206e69c21b1c449d2b987d921e',1716,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg',NULL,'1716','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg','1716','attachment-image','{\"width\":1500,\"height\":2135,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg\",\"size\":\"full\",\"id\":1716,\"alt\":\"\",\"pixels\":3202500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-05 14:39:11','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 15:14:11','2022-08-05 14:39:11'),(423,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg','101:b2aa31d0917f46b35d31d9bbabf676f6',1717,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg',NULL,'1717','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg','1717','attachment-image','{\"width\":1500,\"height\":2111,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg\",\"size\":\"full\",\"id\":1717,\"alt\":\"\",\"pixels\":3166500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-05 14:39:19','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 15:14:09','2022-08-05 14:39:19'),(419,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg','96:b0d22760ffabbcc9dab5b54554a628b9',1710,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg',NULL,'1710','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg','1710','attachment-image','{\"width\":1500,\"height\":1960,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg\",\"size\":\"full\",\"id\":1710,\"alt\":\"\",\"pixels\":2940000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-04 03:33:50','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-04 15:43:44','2022-08-04 03:33:50'),(424,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg','108:ad4bf5fd8507acca80ccbd3d2def8c61',1720,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg',NULL,'1720','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg','1720','attachment-image','{\"width\":1500,\"height\":1974,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Marvelous-Moment-Headshot-Release-IMG_0688-1500px2.jpg\",\"size\":\"full\",\"id\":1720,\"alt\":\"\",\"pixels\":2961000,\"type\":\"image/jpeg\"}',NULL,0,NULL,'2022-08-05 15:13:21','2022-08-05 15:36:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 15:13:38','2022-08-05 15:13:21'),(432,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg','92:2cc160a75e1c41bd1cc5ef8ed284abf2',1748,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg',NULL,'1748','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg','1748','attachment-image','{\"width\":1500,\"height\":1991,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg\",\"size\":\"full\",\"id\":1748,\"alt\":\"\",\"pixels\":2986500,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-06 17:26:44','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-06 17:27:04','2022-08-06 17:26:44'),(426,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg','97:c604ee8fd290413e9da596a8c7b8fbb2',1723,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg',NULL,'1723','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg','1723','attachment-image','{\"width\":1500,\"height\":2094,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg\",\"size\":\"full\",\"id\":1723,\"alt\":\"\",\"pixels\":3141000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-05 15:35:37','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-05 15:35:52','2022-08-05 15:35:37'),(434,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg','85:fa3942cd629d3a51ebeb167e106a6040',1752,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg',NULL,'1752','attachment-image',NULL,NULL,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg','1752','attachment-image','{\"width\":1500,\"height\":2162,\"url\":\"https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg\",\"path\":\"/home/flapst5/flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg\",\"size\":\"full\",\"id\":1752,\"alt\":\"\",\"pixels\":3243000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2022-08-13 03:46:13','2022-11-09 17:15:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-08-13 03:46:32','2022-08-13 03:46:13');
/*!40000 ALTER TABLE `wp1j_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp1j_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_yoast_indexable_hierarchy`
--

LOCK TABLES `wp1j_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp1j_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp1j_yoast_indexable_hierarchy` VALUES (2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(8,0,0,1),(9,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(74,0,0,1),(17,0,0,1),(18,0,0,1),(19,0,0,1),(20,0,0,1),(21,0,0,1),(22,0,0,1),(23,0,0,1),(24,0,0,1),(25,0,0,1),(26,0,0,1),(27,0,0,1),(28,0,0,1),(29,0,0,1),(1,0,0,1),(39,0,0,1),(38,0,0,1),(67,0,0,1),(36,0,0,1),(35,0,0,1),(40,0,0,1),(42,0,0,1),(43,0,0,1),(44,0,0,1),(45,0,0,1),(46,0,0,1),(47,0,0,1),(48,0,0,1),(49,0,0,1),(50,0,0,1),(52,0,0,1),(53,0,0,1),(54,0,0,1),(55,0,0,1),(69,0,0,1),(57,0,0,1),(59,0,0,1),(60,0,0,1),(61,0,0,1),(62,0,0,1),(63,0,0,1),(64,0,0,1),(65,0,0,1),(66,0,0,1),(68,0,0,1),(70,0,0,1),(75,0,0,1),(73,0,0,1),(76,0,0,1),(77,0,0,1),(78,0,0,1),(79,0,0,1),(80,0,0,1),(213,0,0,1),(82,0,0,1),(83,0,0,1),(84,0,0,1),(313,0,0,1),(86,0,0,1),(316,0,0,1),(88,0,0,1),(89,0,0,1),(90,0,0,1),(91,0,0,1),(92,0,0,1),(93,0,0,1),(94,0,0,1),(99,0,0,1),(97,0,0,1),(245,0,0,1),(111,0,0,1),(112,0,0,1),(113,0,0,1),(114,0,0,1),(115,0,0,1),(116,0,0,1),(364,0,0,1),(118,0,0,1),(120,0,0,1),(109,0,0,1),(110,0,0,1),(370,0,0,1),(122,0,0,1),(238,0,0,1),(237,0,0,1),(239,0,0,1),(226,0,0,1),(127,0,0,1),(128,0,0,1),(129,0,0,1),(220,0,0,1),(131,0,0,1),(132,0,0,1),(133,0,0,1),(134,0,0,1),(136,0,0,1),(137,0,0,1),(138,0,0,1),(139,0,0,1),(140,0,0,1),(141,0,0,1),(142,0,0,1),(258,0,0,1),(144,0,0,1),(145,0,0,1),(146,0,0,1),(147,0,0,1),(148,0,0,1),(149,0,0,1),(150,0,0,1),(151,0,0,1),(152,0,0,1),(153,0,0,1),(154,0,0,1),(155,0,0,1),(156,0,0,1),(157,0,0,1),(297,0,0,1),(292,0,0,1),(255,0,0,1),(162,0,0,1),(197,0,0,1),(166,0,0,1),(170,0,0,1),(169,0,0,1),(221,0,0,1),(219,0,0,1),(174,0,0,1),(177,0,0,1),(179,0,0,1),(180,0,0,1),(181,0,0,1),(182,0,0,1),(183,0,0,1),(184,0,0,1),(185,0,0,1),(186,0,0,1),(187,0,0,1),(188,0,0,1),(189,0,0,1),(190,0,0,1),(201,200,1,1),(217,0,0,1),(215,0,0,1),(214,0,0,1),(200,0,0,1),(196,0,0,1),(202,200,1,1),(203,200,1,1),(204,200,1,1),(205,200,1,1),(206,200,1,1),(207,0,0,1),(230,0,0,1),(347,0,0,1),(210,0,0,1),(368,0,0,1),(223,0,0,1),(224,0,0,1),(227,0,0,1),(369,368,1,1),(233,0,0,1),(236,0,0,1),(242,0,0,1),(257,0,0,1),(247,0,0,1),(254,0,0,1),(299,0,0,1),(293,0,0,1),(298,0,0,1),(325,0,0,1),(323,0,0,1),(322,0,0,1),(321,0,0,1),(320,0,0,1),(319,0,0,1),(318,0,0,1),(317,0,0,1),(315,0,0,1),(310,0,0,1),(327,0,0,1),(399,0,0,1),(401,0,0,1),(346,0,0,1),(342,0,0,1),(309,0,0,1),(308,0,0,1),(303,0,0,1),(302,0,0,1),(301,0,0,1),(305,0,0,1),(290,0,0,1),(289,0,0,1),(288,0,0,1),(287,0,0,1),(286,0,0,1),(285,0,0,1),(284,0,0,1),(272,0,0,1),(270,0,0,1),(269,0,0,1),(371,0,0,1),(372,0,0,1),(382,0,0,1),(381,4,1,1),(380,0,0,1),(377,0,0,1),(376,0,0,1),(379,0,0,1),(375,0,0,1),(384,0,0,1),(387,0,0,1),(388,0,0,1),(361,0,0,1),(366,0,0,1),(352,0,0,1),(330,0,0,1),(300,299,1,1),(363,0,0,1),(362,0,0,1),(359,0,0,1),(357,0,0,1),(355,0,0,1),(374,0,0,1),(360,0,0,1),(353,0,0,1),(351,0,0,1),(350,0,0,1),(348,0,0,1),(392,0,0,1),(391,0,0,1),(390,0,0,1),(389,0,0,1),(396,0,0,1),(395,0,0,1),(394,0,0,1),(393,0,0,1),(397,0,0,1),(398,0,0,1),(400,0,0,1),(406,0,0,1),(408,0,0,1),(412,0,0,1),(411,0,0,1),(413,0,0,1),(407,0,0,1),(423,0,0,1),(426,0,0,1),(419,0,0,1),(424,0,0,1),(422,0,0,1),(432,0,0,1),(409,0,0,1),(433,0,0,1),(434,0,0,1);
/*!40000 ALTER TABLE `wp1j_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_yoast_migrations`
--

DROP TABLE IF EXISTS `wp1j_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wp1j_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_yoast_migrations`
--

LOCK TABLES `wp1j_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp1j_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp1j_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404');
/*!40000 ALTER TABLE `wp1j_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp1j_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp1j_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_yoast_primary_term`
--

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

--
-- Table structure for table `wp1j_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp1j_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp1j_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=58468 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp1j_yoast_seo_links`
--

LOCK TABLES `wp1j_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp1j_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp1j_yoast_seo_links` VALUES (57186,'https://flaphotography.com/post-production',85,98,'internal',8,19,NULL,NULL,NULL,NULL,NULL),(35474,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg',463,1084,'image-in',157,287,508,1000,30484,NULL,NULL),(54593,'https://flaphotography.com/',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(54594,'#',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(57189,'https://flaphotography.com/products-photography',85,1188,'internal',8,313,NULL,NULL,NULL,NULL,NULL),(57190,'#',85,NULL,'internal',8,3,NULL,NULL,NULL,NULL,NULL),(57191,'https://flaphotography.com/post-production',85,98,'internal',8,19,NULL,NULL,NULL,NULL,NULL),(57192,'https://flapstart.com',85,NULL,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(57193,'https://flaphotography.com/about',85,214,'internal',8,89,NULL,NULL,NULL,NULL,NULL),(57194,'https://www.facebook.com/FlapStart\'\n',85,NULL,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(57195,'https://www.instagram.com/kcj_flapstart\'\n',85,NULL,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(57196,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',85,1463,'image-in',8,367,88,300,8115,NULL,NULL),(57197,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg',85,144,'image-in',8,57,1600,2560,490362,NULL,NULL),(57198,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg',85,93,'image-in',8,13,1636,2560,330403,NULL,NULL),(57199,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',85,108,'image-in',8,24,1707,2560,562987,NULL,NULL),(57200,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg',85,152,'image-in',8,65,1025,1536,176980,NULL,NULL),(57201,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg',85,136,'image-in',8,49,1536,1536,251985,NULL,NULL),(57202,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png',85,22,'image-in',8,18,81,230,4351,NULL,NULL),(32235,'https://flaphotography.com/promotion',214,463,'internal',89,157,NULL,NULL,NULL,NULL,NULL),(32236,'https://flapstart.com',214,NULL,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(53597,'https://flaphotography.com/',1646,NULL,'internal',406,3,NULL,NULL,NULL,NULL,NULL),(35462,'http://flapstart.com/',463,NULL,'external',157,NULL,NULL,NULL,NULL,NULL,NULL),(35463,'https://flaphotography.com/about/',463,214,'internal',157,89,NULL,NULL,NULL,NULL,NULL),(34197,'https://flaphotography.com/post-production',71,98,'internal',7,19,NULL,NULL,NULL,NULL,NULL),(53609,'https://flaphotography.com/post-production',1646,98,'internal',406,19,NULL,NULL,NULL,NULL,NULL),(53607,'https://flaphotography.com/couples-family-sessions/',1646,25,'internal',406,5,NULL,NULL,NULL,NULL,NULL),(53608,'https://flaphotography.com/promotion/',1646,463,'internal',406,157,NULL,NULL,NULL,NULL,NULL),(53600,'https://flaphotography.com/fashion-modeling-sessions/',1646,61,'internal',406,6,NULL,NULL,NULL,NULL,NULL),(53599,'https://flaphotography.com/corporate/',1646,9,'internal',406,4,NULL,NULL,NULL,NULL,NULL),(52288,'https://flaphotography.com/',1188,NULL,'internal',313,3,NULL,NULL,NULL,NULL,NULL),(52289,'https://flaphotography.com/',1188,NULL,'internal',313,3,NULL,NULL,NULL,NULL,NULL),(52290,'#',1188,NULL,'internal',313,3,NULL,NULL,NULL,NULL,NULL),(52291,'https://flaphotography.com/corporate/',1188,9,'internal',313,4,NULL,NULL,NULL,NULL,NULL),(52292,'https://flaphotography.com/fashion-modeling-sessions/',1188,61,'internal',313,6,NULL,NULL,NULL,NULL,NULL),(52293,'https://flaphotography.com/post-production/',1188,98,'internal',313,19,NULL,NULL,NULL,NULL,NULL),(52294,'http://flapstart.com/',1188,NULL,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(52295,'https://flaphotography.com/about/',1188,214,'internal',313,89,NULL,NULL,NULL,NULL,NULL),(52296,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1.jpg',1188,1198,'internal',313,315,NULL,NULL,NULL,NULL,NULL),(52297,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2.jpg',1188,1177,'internal',313,310,NULL,NULL,NULL,NULL,NULL),(52298,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2.jpg',1188,1204,'internal',313,321,NULL,NULL,NULL,NULL,NULL),(52299,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2.jpg',1188,1201,'internal',313,318,NULL,NULL,NULL,NULL,NULL),(52300,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5.jpg',1188,1203,'internal',313,320,NULL,NULL,NULL,NULL,NULL),(58466,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2-400x516.jpg',9,654,'image-in',4,219,1733,1391,408972,NULL,NULL),(58467,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP-400x516.jpg',9,665,'image-in',4,224,2310,1668,409527,NULL,NULL),(58465,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2-400x516.jpg',9,1104,'image-in',4,288,1300,1300,305729,NULL,NULL),(58464,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2-400x516.jpg',9,1105,'image-in',4,289,1300,1300,237521,NULL,NULL),(58463,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px-400x516.jpg',9,1323,'image-in',4,348,800,800,237008,NULL,NULL),(58462,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX-400x516.jpg',9,1172,'image-in',4,308,899,900,228412,NULL,NULL),(58461,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-400x516.jpg',9,NULL,'image-in',4,NULL,NULL,NULL,NULL,NULL,NULL),(58460,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-400x516.jpg',9,NULL,'image-in',4,NULL,NULL,NULL,NULL,NULL,NULL),(58459,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px-400x516.jpg',9,1752,'image-in',4,434,2162,1500,460518,NULL,NULL),(57185,'https://flaphotography.com/products-photography/',85,1188,'internal',8,313,NULL,NULL,NULL,NULL,NULL),(57184,'https://flaphotography.com/fashion-modeling-sessions/',85,61,'internal',8,6,NULL,NULL,NULL,NULL,NULL),(57183,'https://flaphotography.com/corporate',85,9,'internal',8,4,NULL,NULL,NULL,NULL,NULL),(47318,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1-400x284.jpg',98,133,'image-in',19,46,682,1024,85450,NULL,NULL),(47319,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1-400x284.jpg',98,130,'image-in',19,43,653,980,80809,NULL,NULL),(47317,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1-400x284.jpg',98,126,'image-in',19,39,654,980,64779,NULL,NULL),(47316,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1-400x284.jpg',98,127,'image-in',19,40,855,1280,80854,NULL,NULL),(47297,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg',98,107,'image-in',19,23,1707,2560,581232,NULL,NULL),(47298,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',98,108,'image-in',19,24,1707,2560,562987,NULL,NULL),(47299,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg',98,110,'image-in',19,26,1735,2560,409268,NULL,NULL),(47300,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg',98,112,'image-in',19,28,1735,2560,410441,NULL,NULL),(47301,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg',98,113,'image-in',19,29,1735,2560,692487,NULL,NULL),(47302,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1-400x284.jpg',98,147,'image-in',19,60,1707,2560,278685,NULL,NULL),(47303,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-400x284.jpg',98,NULL,'image-in',19,NULL,NULL,NULL,NULL,NULL,NULL),(47304,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1-400x284.jpg',98,154,'image-in',19,66,854,1280,114149,NULL,NULL),(47305,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-400x284.jpg',98,NULL,'image-in',19,NULL,NULL,NULL,NULL,NULL,NULL),(47306,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3-400x284.jpg',98,191,'image-in',19,73,2560,2560,556777,NULL,NULL),(47307,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1-400x284.jpg',98,137,'image-in',19,50,2048,2048,390516,NULL,NULL),(47308,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1-400x284.jpg',98,134,'image-in',19,47,980,980,94586,NULL,NULL),(47309,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1-400x284.jpg',98,162,'image-in',19,69,2560,2560,427710,NULL,NULL),(47310,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1-400x284.jpg',98,140,'image-in',19,53,1536,1536,405603,NULL,NULL),(47311,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1-400x284.jpg',98,139,'image-in',19,52,1280,1280,304247,NULL,NULL),(47312,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-400x284.jpg',98,NULL,'image-in',19,NULL,NULL,NULL,NULL,NULL,NULL),(47313,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-400x284.jpg',98,NULL,'image-in',19,NULL,NULL,NULL,NULL,NULL,NULL),(47314,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148-400x284.jpg',98,122,'image-in',19,35,683,1024,60072,NULL,NULL),(47315,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1-400x284.jpg',98,125,'image-in',19,38,690,1080,67225,NULL,NULL),(47296,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg',98,106,'image-in',19,22,1707,2560,567737,NULL,NULL),(47295,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',98,1463,'image-in',19,367,88,300,8115,NULL,NULL),(47294,'https://www.instagram.com/flaphotography_flapstart\'\n',98,NULL,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(47288,'https://flaphotography.com/fashion-modeling-sessions/',98,61,'internal',19,6,NULL,NULL,NULL,NULL,NULL),(47289,'https://flaphotography.com/products-photography',98,1188,'internal',19,313,NULL,NULL,NULL,NULL,NULL),(47293,'https://www.facebook.com/FlapStart\'\n',98,NULL,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(47292,'https://flaphotography.com/about',98,214,'internal',19,89,NULL,NULL,NULL,NULL,NULL),(47291,'https://flapstart.com',98,NULL,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(47290,'https://flaphotography.com/post-production',98,98,'internal',19,19,NULL,NULL,NULL,NULL,NULL),(47287,'https://flaphotography.com/corporate',98,9,'internal',19,4,NULL,NULL,NULL,NULL,NULL),(47286,'https://flaphotography.com/wp-content/uploads/2021/09/Sun-light-black-man-reading-After-980x653-1.jpg',98,130,'internal',19,43,NULL,NULL,NULL,NULL,NULL),(47285,'https://flaphotography.com/wp-content/uploads/2021/09/black-man-reading-pixaba-before-1024x682-1.jpg',98,133,'internal',19,46,NULL,NULL,NULL,NULL,NULL),(47284,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-3-Sky-Replaced-1-980x654-1.jpg',98,126,'internal',19,39,NULL,NULL,NULL,NULL,NULL),(47283,'https://flaphotography.com/wp-content/uploads/2021/09/Wedding-couple-Sky-shutterstock_1524509117-1280x855-1.jpg',98,127,'internal',19,40,NULL,NULL,NULL,NULL,NULL),(47282,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-3-Red-Background-1.jpg',98,125,'internal',19,38,NULL,NULL,NULL,NULL,NULL),(47279,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-hutterstock_405569032-2880x1800-1-scaled.jpg',98,142,'internal',19,55,NULL,NULL,NULL,NULL,NULL),(47280,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg',98,144,'internal',19,57,NULL,NULL,NULL,NULL,NULL),(47281,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Bow-Tie-Suit-shutterstock_1141300148.jpg',98,122,'internal',19,35,NULL,NULL,NULL,NULL,NULL),(47278,'https://flaphotography.com/wp-content/uploads/2021/09/Dodged-Beautiful-Black-GIRL-MAG-2-1280x1280-1.jpg',98,139,'internal',19,52,NULL,NULL,NULL,NULL,NULL),(47277,'https://flaphotography.com/wp-content/uploads/2021/09/Beautiful-Black-GIRL-Before-Mag-1536x1536-1.jpg',98,140,'internal',19,53,NULL,NULL,NULL,NULL,NULL),(47276,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-MAG-New-BGR-Woman-with-flowers-scaled-1.jpg',98,162,'internal',19,69,NULL,NULL,NULL,NULL,NULL),(47274,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-Woman-with-flowers-2048x2048-1.jpg',98,137,'internal',19,50,NULL,NULL,NULL,NULL,NULL),(47275,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-in-flowers-2-MAG-Before-980x980-1.jpg',98,134,'internal',19,47,NULL,NULL,NULL,NULL,NULL),(47273,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-with-flowers-shutterstock_479006941-scaled-3.jpg',98,191,'internal',19,73,NULL,NULL,NULL,NULL,NULL),(47272,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-hair-Dodged-3-Woman-whitened-teeth-BG-color-corrected-scaled.jpg',98,141,'internal',19,54,NULL,NULL,NULL,NULL,NULL),(47271,'https://flaphotography.com/wp-content/uploads/2021/09/Eye-Before-Woman-whitened-teeth-1280x854-1.jpg',98,154,'internal',19,66,NULL,NULL,NULL,NULL,NULL),(47270,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Removed-After-scaled.jpg',98,148,'internal',19,61,NULL,NULL,NULL,NULL,NULL),(47269,'https://flaphotography.com/wp-content/uploads/2021/09/Blemish-Asian-Woman-shutterstock_1294767832-scaled-1.jpg',98,147,'internal',19,60,NULL,NULL,NULL,NULL,NULL),(47268,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-Background-replaced-scaled-1.jpg',98,113,'internal',19,29,NULL,NULL,NULL,NULL,NULL),(47266,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-suit-shutterstock_1009394125-scaled-1.jpg',98,110,'internal',19,26,NULL,NULL,NULL,NULL,NULL),(32237,'https://flaphotography.com/corporate',214,9,'internal',89,4,NULL,NULL,NULL,NULL,NULL),(32238,'https://flaphotography.com/fashion-modeling-sessions/',214,61,'internal',89,6,NULL,NULL,NULL,NULL,NULL),(32246,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',214,902,'image-in',89,268,54,300,2331,NULL,NULL),(32245,'https://flaphotography.com/promotion',214,463,'internal',89,157,NULL,NULL,NULL,NULL,NULL),(32244,'https://www.instagram.com/flaphotography_flapstart\'\n',214,NULL,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(32243,'https://www.facebook.com/FlapStart\'\n',214,NULL,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(32242,'https://flaphotography.com/about',214,214,'internal',89,89,NULL,NULL,NULL,NULL,NULL),(32241,'https://flapstart.com',214,NULL,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(32240,'https://flaphotography.com/post-production',214,98,'internal',89,19,NULL,NULL,NULL,NULL,NULL),(32239,'https://flaphotography.com/couples-family-sessions/',214,25,'internal',89,5,NULL,NULL,NULL,NULL,NULL),(47267,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-White-to-BLACK-suit-Color-change-scaled-1.jpg',98,112,'internal',19,28,NULL,NULL,NULL,NULL,NULL),(47265,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',98,108,'internal',19,24,NULL,NULL,NULL,NULL,NULL),(47262,'https://flaphotography.com/about/',98,214,'internal',19,89,NULL,NULL,NULL,NULL,NULL),(47263,'https://flaphotography.com/wp-content/uploads/2021/09/Women-red-dress_shutterstock_642298723-scaled-1.jpg',98,106,'internal',19,22,NULL,NULL,NULL,NULL,NULL),(47264,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Green-Change_Final-scaled-1.jpg',98,107,'internal',19,23,NULL,NULL,NULL,NULL,NULL),(47261,'http://flapstart.com/',98,NULL,'external',19,NULL,NULL,NULL,NULL,NULL,NULL),(47260,'https://flaphotography.com/products-photography/',98,1188,'internal',19,313,NULL,NULL,NULL,NULL,NULL),(35464,'https://flaphotography.com/corporate',463,9,'internal',157,4,NULL,NULL,NULL,NULL,NULL),(53604,'https://flaphotography.com/about/',1646,214,'internal',406,89,NULL,NULL,NULL,NULL,NULL),(22628,'https://flaphotography.com/couples-family-sessions/',668,25,'internal',230,5,NULL,NULL,NULL,NULL,NULL),(53610,'https://flaphotography.com/corporate',1646,9,'internal',406,4,NULL,NULL,NULL,NULL,NULL),(58458,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px-400x516.jpg',9,1751,'image-in',4,433,1378,1500,542925,NULL,NULL),(57187,'https://flaphotography.com/corporate',85,9,'internal',8,4,NULL,NULL,NULL,NULL,NULL),(54608,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg',61,36,'internal',6,141,NULL,NULL,NULL,NULL,NULL),(34198,'https://flapstart.com',71,NULL,'external',7,NULL,NULL,NULL,NULL,NULL,NULL),(53601,'https://flaphotography.com/products-photography/',1646,1188,'internal',406,313,NULL,NULL,NULL,NULL,NULL),(58456,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8-400x516.jpg',9,1723,'image-in',4,426,2094,1500,895168,NULL,NULL),(58457,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px-400x516.jpg',9,1710,'image-in',4,419,1960,1500,557614,NULL,NULL),(54607,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg',61,810,'internal',6,254,NULL,NULL,NULL,NULL,NULL),(54595,'https://flaphotography.com/corporate/',61,9,'internal',6,4,NULL,NULL,NULL,NULL,NULL),(54596,'https://flaphotography.com/products-photography/',61,1188,'internal',6,313,NULL,NULL,NULL,NULL,NULL),(54597,'https://flaphotography.com/post-production/',61,98,'internal',6,19,NULL,NULL,NULL,NULL,NULL),(54598,'http://flapstart.com/',61,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(54599,'https://flaphotography.com/about/',61,214,'internal',6,89,NULL,NULL,NULL,NULL,NULL),(54600,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg',61,1158,'internal',6,305,NULL,NULL,NULL,NULL,NULL),(54601,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg',61,747,'internal',6,236,NULL,NULL,NULL,NULL,NULL),(54602,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg',61,760,'internal',6,239,NULL,NULL,NULL,NULL,NULL),(54603,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg',61,750,'internal',6,237,NULL,NULL,NULL,NULL,NULL),(54604,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg',61,812,'internal',6,255,NULL,NULL,NULL,NULL,NULL),(54605,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg',61,791,'internal',6,247,NULL,NULL,NULL,NULL,NULL),(54606,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg',61,783,'internal',6,245,NULL,NULL,NULL,NULL,NULL),(22629,'https://flaphotography.com/wedding-photography/',668,71,'internal',230,7,NULL,NULL,NULL,NULL,NULL),(54617,'#',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(34203,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',71,902,'image-in',7,268,54,300,2331,NULL,NULL),(53602,'https://flaphotography.com/post-production/',1646,98,'internal',406,19,NULL,NULL,NULL,NULL,NULL),(47258,'https://flaphotography.com/corporate/',98,9,'internal',19,4,NULL,NULL,NULL,NULL,NULL),(47259,'https://flaphotography.com/fashion-modeling-sessions/',98,61,'internal',19,6,NULL,NULL,NULL,NULL,NULL),(22626,'https://flaphotography.com/corporate/',668,9,'internal',230,4,NULL,NULL,NULL,NULL,NULL),(53603,'http://flapstart.com/',1646,NULL,'external',406,NULL,NULL,NULL,NULL,NULL,NULL),(54618,'https://flaphotography.com/post-production',61,98,'internal',6,19,NULL,NULL,NULL,NULL,NULL),(54619,'https://flapstart.com',61,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(54620,'https://flaphotography.com/about',61,214,'internal',6,89,NULL,NULL,NULL,NULL,NULL),(35471,'https://www.instagram.com/flaphotography_flapstart\'\n',463,NULL,'external',157,NULL,NULL,NULL,NULL,NULL,NULL),(54621,'https://www.facebook.com/FlapStart\'\n',61,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(35465,'https://flaphotography.com/fashion-modeling-sessions/',463,61,'internal',157,6,NULL,NULL,NULL,NULL,NULL),(35466,'https://flaphotography.com/couples-family-sessions/',463,25,'internal',157,5,NULL,NULL,NULL,NULL,NULL),(54609,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg',61,1240,'internal',6,330,NULL,NULL,NULL,NULL,NULL),(22625,'#',668,NULL,'internal',230,3,NULL,NULL,NULL,NULL,NULL),(53606,'https://flaphotography.com/fashion-modeling-sessions/',1646,61,'internal',406,6,NULL,NULL,NULL,NULL,NULL),(53605,'https://flaphotography.com/corporate',1646,9,'internal',406,4,NULL,NULL,NULL,NULL,NULL),(57780,'https://flaphotography.com/corporate/#CorporatePrice-Section',1114,9,'internal',292,4,NULL,NULL,NULL,NULL,NULL),(54610,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg',61,40,'internal',6,145,NULL,NULL,NULL,NULL,NULL),(54611,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg',61,39,'internal',6,144,NULL,NULL,NULL,NULL,NULL),(54612,'#',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(54613,'#',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(54614,'https://flaphotography.com/corporate/',61,9,'internal',6,4,NULL,NULL,NULL,NULL,NULL),(54615,'https://flaphotography.com/corporate',61,9,'internal',6,4,NULL,NULL,NULL,NULL,NULL),(54616,'https://flaphotography.com/products-photography',61,1188,'internal',6,313,NULL,NULL,NULL,NULL,NULL),(57787,'https://flaphotography.com/wp-content/uploads/2021/12/CNJ-VISION-1000px.jpg',1133,1084,'image-in',297,287,508,1000,30484,NULL,NULL),(57786,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg',1483,1508,'image-in',368,369,1676,2499,712712,NULL,NULL),(54622,'https://www.instagram.com/kcj_flapstart\'\n',61,NULL,'external',6,NULL,NULL,NULL,NULL,NULL,NULL),(54623,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',61,1463,'image-in',6,367,88,300,8115,NULL,NULL),(54624,'https://flaphotography.com/wp-content/uploads/2022/03/Marvelous-Fashion-2-IMG_9010-900px.jpg',61,1158,'image-in',6,305,1531,900,350925,NULL,NULL),(54625,'https://flaphotography.com/wp-content/uploads/2021/10/Flow-presence_MG_8542-1-FQ-2000PX.jpg',61,747,'image-in',6,236,1730,1858,492694,NULL,NULL),(54626,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5248-1-5000PX-CROP-scaled.jpg',61,760,'image-in',6,239,2301,2560,873615,NULL,NULL),(54627,'https://flaphotography.com/wp-content/uploads/2021/10/Marvelous-Sky_MG_8543-1-FQ-2000PX-scaled.jpg',61,750,'image-in',6,237,2560,1752,266838,NULL,NULL),(54628,'https://flaphotography.com/wp-content/uploads/2021/10/NOELLE_5330-1-6000px72-3000PX-scaled.jpg',61,812,'image-in',6,255,2560,1628,812894,NULL,NULL),(54629,'https://flaphotography.com/wp-content/uploads/2021/10/Ruben-IMG_5250-1-2500PX-CP.jpg',61,791,'image-in',6,247,1616,1642,633197,NULL,NULL),(58454,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6-400x516.jpg',9,1716,'image-in',4,422,2135,1500,465224,NULL,NULL),(58455,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6-400x516.jpg',9,1717,'image-in',4,423,2111,1500,527860,NULL,NULL),(58453,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX-400x516.jpg',9,1695,'image-in',4,411,2243,1500,498980,NULL,NULL),(58452,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX-400x516.jpg',9,1696,'image-in',4,412,2343,1500,579428,NULL,NULL),(58451,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4-400x516.jpg',9,1748,'image-in',4,432,1991,1500,454621,NULL,NULL),(58449,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px-400x516.jpg',9,1614,'image-in',4,399,1970,1500,211910,NULL,NULL),(47727,'https://flaphotography.com/wp-content/uploads/2021/12/Grace-IMG_5247-1.1500PX-CROP.jpg',1137,1140,'image-in',299,300,704,1500,436759,NULL,NULL),(53598,'#',1646,NULL,'internal',406,3,NULL,NULL,NULL,NULL,NULL),(54630,'https://flaphotography.com/wp-content/uploads/2021/10/IMG_5311-1-3000PXC3-scaled.jpg',61,783,'image-in',6,245,2560,1675,1075195,NULL,NULL),(37221,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg',25,50,'image-in',5,151,1667,2500,1181313,NULL,NULL),(37222,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg',25,51,'image-in',5,152,2560,1754,817275,NULL,NULL),(37223,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg',25,52,'image-in',5,153,2560,1740,895220,NULL,NULL),(37220,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg',25,49,'image-in',5,150,1641,2560,814407,NULL,NULL),(37219,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg',25,48,'image-in',5,149,2254,2500,1382434,NULL,NULL),(37218,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg',25,47,'image-in',5,148,2481,2500,1519491,NULL,NULL),(37205,'https://www.facebook.com/FlapStart\'\n',25,NULL,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(37206,'https://www.instagram.com/flaphotography_flapstart\'\n',25,NULL,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(37207,'https://flaphotography.com/corporate/#CorporatePrice-Section',25,9,'internal',5,4,NULL,NULL,NULL,NULL,NULL),(37208,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',25,902,'image-in',5,268,54,300,2331,NULL,NULL),(37209,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg',25,33,'image-in',5,138,2560,1707,461030,NULL,NULL),(37210,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg',25,582,'image-in',5,174,2560,2135,678685,NULL,NULL),(37211,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg',25,608,'image-in',5,179,2560,1753,507246,NULL,NULL),(37212,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg',25,36,'image-in',5,141,2560,1707,632964,NULL,NULL),(37213,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg',25,817,'image-in',5,257,1902,2560,443772,NULL,NULL),(37214,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg',25,40,'image-in',5,145,2018,2560,428865,NULL,NULL),(37215,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg',25,39,'image-in',5,144,2415,2560,649948,NULL,NULL),(37216,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg',25,45,'image-in',5,146,2560,1625,962972,NULL,NULL),(37217,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg',25,46,'image-in',5,147,2560,2123,875716,NULL,NULL),(37204,'https://flaphotography.com/about',25,214,'internal',5,89,NULL,NULL,NULL,NULL,NULL),(37203,'https://flapstart.com',25,NULL,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(37201,'https://flaphotography.com/products-photography',25,1188,'internal',5,313,NULL,NULL,NULL,NULL,NULL),(37202,'https://flaphotography.com/post-production',25,98,'internal',5,19,NULL,NULL,NULL,NULL,NULL),(37200,'https://flaphotography.com/fashion-modeling-sessions/',25,61,'internal',5,6,NULL,NULL,NULL,NULL,NULL),(37196,'#',25,NULL,'internal',5,3,NULL,NULL,NULL,NULL,NULL),(37197,'#',25,NULL,'internal',5,3,NULL,NULL,NULL,NULL,NULL),(37198,'https://flaphotography.com/fashion-modeling-sessions/',25,61,'internal',5,6,NULL,NULL,NULL,NULL,NULL),(37199,'https://flaphotography.com/corporate',25,9,'internal',5,4,NULL,NULL,NULL,NULL,NULL),(37195,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg',25,53,'internal',5,154,NULL,NULL,NULL,NULL,NULL),(37194,'https://flaphotography.com/wp-content/uploads/2021/09/Q-THAIRU-CROSS-IMG_0423-2500PX-scaled-1.jpg',25,52,'internal',5,153,NULL,NULL,NULL,NULL,NULL),(37193,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-mom-IMG_0468-2500px2-scaled-1.jpg',25,51,'internal',5,152,NULL,NULL,NULL,NULL,NULL),(37192,'https://flaphotography.com/wp-content/uploads/2021/09/Dad-mom-Flow-kiss-IMG_0486-2500px-3.jpg',25,50,'internal',5,151,NULL,NULL,NULL,NULL,NULL),(37191,'https://flaphotography.com/wp-content/uploads/2021/09/Lovers-shot-IMG_9632-3000px-scaled-1-scaled.jpg',25,49,'internal',5,150,NULL,NULL,NULL,NULL,NULL),(37190,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-THAIRU-LOVE-IMG_0414-2500PX-2.jpg',25,48,'internal',5,149,NULL,NULL,NULL,NULL,NULL),(37180,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Emperor-IMG_0010-3000px-scaled-2-scaled.jpg',25,33,'internal',5,138,NULL,NULL,NULL,NULL,NULL),(37181,'https://flaphotography.com/wp-content/uploads/2021/09/Ash-the-king-and-queen-IMG_0001_2500px-CROP-scaled.jpg',25,582,'internal',5,174,NULL,NULL,NULL,NULL,NULL),(37182,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg',25,608,'internal',5,179,NULL,NULL,NULL,NULL,NULL),(37183,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg',25,36,'internal',5,141,NULL,NULL,NULL,NULL,NULL),(37184,'https://flaphotography.com/wp-content/uploads/2021/10/ASH-GAZE-IMG_0003_3-2600-FREQ-scaled.jpg',25,817,'internal',5,257,NULL,NULL,NULL,NULL,NULL),(37185,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg',25,40,'internal',5,145,NULL,NULL,NULL,NULL,NULL),(37186,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg',25,39,'internal',5,144,NULL,NULL,NULL,NULL,NULL),(37187,'https://flaphotography.com/wp-content/uploads/2021/09/FlowCouple-Glass-IMG_0400-2500px-2-scaled-1.jpg',25,45,'internal',5,146,NULL,NULL,NULL,NULL,NULL),(37188,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-flow-SOFTBOX-TETHERING-2500PX-scaled-1.jpg',25,46,'internal',5,147,NULL,NULL,NULL,NULL,NULL),(37178,'http://flapstart.com/',25,NULL,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(37179,'https://flaphotography.com/about/',25,214,'internal',5,89,NULL,NULL,NULL,NULL,NULL),(58450,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px-400x516.jpg',9,1617,'image-in',4,400,2072,1500,456727,NULL,NULL),(47255,'https://flaphotography.com/',98,NULL,'internal',19,3,NULL,NULL,NULL,NULL,NULL),(47257,'#',98,NULL,'internal',19,3,NULL,NULL,NULL,NULL,NULL),(47256,'https://flaphotography.com/',98,NULL,'internal',19,3,NULL,NULL,NULL,NULL,NULL),(22630,'https://flaphotography.com/post-production/',668,98,'internal',230,19,NULL,NULL,NULL,NULL,NULL),(53596,'https://flaphotography.com/',1646,NULL,'internal',406,3,NULL,NULL,NULL,NULL,NULL),(58448,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px-400x516.jpg',9,1610,'image-in',4,397,1963,1500,302432,NULL,NULL),(34196,'https://flaphotography.com/couples-family-sessions/',71,25,'internal',7,5,NULL,NULL,NULL,NULL,NULL),(34195,'https://flaphotography.com/fashion-modeling-sessions/',71,61,'internal',7,6,NULL,NULL,NULL,NULL,NULL),(34194,'https://flaphotography.com/corporate',71,9,'internal',7,4,NULL,NULL,NULL,NULL,NULL),(34193,'https://flaphotography.com/couples-family-sessions/',71,25,'internal',7,5,NULL,NULL,NULL,NULL,NULL),(34192,'https://flaphotography.com/promotion',71,463,'internal',7,157,NULL,NULL,NULL,NULL,NULL),(34190,'http://flapstart.com/',71,NULL,'external',7,NULL,NULL,NULL,NULL,NULL,NULL),(34191,'https://flaphotography.com/about/',71,214,'internal',7,89,NULL,NULL,NULL,NULL,NULL),(34189,'https://flaphotography.com/post-production/',71,98,'internal',7,19,NULL,NULL,NULL,NULL,NULL),(34188,'https://flaphotography.com/couples-family-sessions/',71,25,'internal',7,5,NULL,NULL,NULL,NULL,NULL),(34187,'https://flaphotography.com/fashion-modeling-sessions/',71,61,'internal',7,6,NULL,NULL,NULL,NULL,NULL),(34185,'#',71,NULL,'internal',7,3,NULL,NULL,NULL,NULL,NULL),(34186,'https://flaphotography.com/corporate/',71,9,'internal',7,4,NULL,NULL,NULL,NULL,NULL),(34183,'https://flaphotography.com/',71,NULL,'internal',7,3,NULL,NULL,NULL,NULL,NULL),(34184,'https://flaphotography.com/',71,NULL,'internal',7,3,NULL,NULL,NULL,NULL,NULL),(37189,'https://flaphotography.com/wp-content/uploads/2021/09/FLOW-COUPLE-IMG_0415-2500PX-2.jpg',25,47,'internal',5,148,NULL,NULL,NULL,NULL,NULL),(32234,'http://flapstart.com/',214,NULL,'external',89,NULL,NULL,NULL,NULL,NULL,NULL),(32233,'https://flaphotography.com/post-production/',214,98,'internal',89,19,NULL,NULL,NULL,NULL,NULL),(32231,'https://flaphotography.com/couples-family-sessions/',214,25,'internal',89,5,NULL,NULL,NULL,NULL,NULL),(32232,'https://flaphotography.com/wedding-photography/',214,71,'internal',89,7,NULL,NULL,NULL,NULL,NULL),(32226,'https://flaphotography.com/',214,NULL,'internal',89,3,NULL,NULL,NULL,NULL,NULL),(32227,'https://flaphotography.com/',214,NULL,'internal',89,3,NULL,NULL,NULL,NULL,NULL),(32228,'#',214,NULL,'internal',89,3,NULL,NULL,NULL,NULL,NULL),(32229,'https://flaphotography.com/corporate/',214,9,'internal',89,4,NULL,NULL,NULL,NULL,NULL),(32230,'https://flaphotography.com/fashion-modeling-sessions/',214,61,'internal',89,6,NULL,NULL,NULL,NULL,NULL),(22452,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png',79,22,'image-in',2,18,81,230,4351,NULL,NULL),(58447,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3-400x516.jpg',9,1592,'image-in',4,392,1244,1500,1159706,NULL,NULL),(35473,'https://flaphotography.com/wp-content/uploads/2021/11/Flap-Photography-Logo-NW-300px6.png',463,902,'image-in',157,268,54,300,2331,NULL,NULL),(35472,'https://flaphotography.com/corporate/#CorporatePrice-Section',463,9,'internal',157,4,NULL,NULL,NULL,NULL,NULL),(52301,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3.jpg',1188,1200,'internal',313,317,NULL,NULL,NULL,NULL,NULL),(58446,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2-400x516.jpg',9,1585,'image-in',4,391,2103,1500,404324,NULL,NULL),(58443,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px-400x516.jpg',9,1538,'image-in',4,376,1292,1500,403708,NULL,NULL),(35461,'https://flaphotography.com/post-production/',463,98,'internal',157,19,NULL,NULL,NULL,NULL,NULL),(35460,'https://flaphotography.com/wedding-photography/',463,71,'internal',157,7,NULL,NULL,NULL,NULL,NULL),(35459,'https://flaphotography.com/couples-family-sessions/',463,25,'internal',157,5,NULL,NULL,NULL,NULL,NULL),(35458,'https://flaphotography.com/fashion-modeling-sessions/',463,61,'internal',157,6,NULL,NULL,NULL,NULL,NULL),(35456,'#',463,NULL,'internal',157,3,NULL,NULL,NULL,NULL,NULL),(35457,'https://flaphotography.com/corporate/',463,9,'internal',157,4,NULL,NULL,NULL,NULL,NULL),(35454,'https://flaphotography.com/',463,NULL,'internal',157,3,NULL,NULL,NULL,NULL,NULL),(35455,'https://flaphotography.com/',463,NULL,'internal',157,3,NULL,NULL,NULL,NULL,NULL),(34202,'https://flaphotography.com/promotion',71,463,'internal',7,157,NULL,NULL,NULL,NULL,NULL),(58445,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX-400x516.jpg',9,1584,'image-in',4,390,1195,1500,1299549,NULL,NULL),(58444,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX-400x516.jpg',9,1583,'image-in',4,389,1178,1500,1097660,NULL,NULL),(57176,'#',85,NULL,'internal',8,3,NULL,NULL,NULL,NULL,NULL),(57177,'https://flaphotography.com/corporate/',85,9,'internal',8,4,NULL,NULL,NULL,NULL,NULL),(57178,'https://flaphotography.com/fashion-modeling-sessions/',85,61,'internal',8,6,NULL,NULL,NULL,NULL,NULL),(22627,'https://flaphotography.com/fashion-modeling-sessions/',668,61,'internal',230,6,NULL,NULL,NULL,NULL,NULL),(34199,'https://flaphotography.com/about',71,214,'internal',7,89,NULL,NULL,NULL,NULL,NULL),(34200,'https://www.facebook.com/FlapStart\'\n',71,NULL,'external',7,NULL,NULL,NULL,NULL,NULL,NULL),(34201,'https://www.instagram.com/flaphotography_flapstart\'\n',71,NULL,'external',7,NULL,NULL,NULL,NULL,NULL,NULL),(58439,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2-400x516.jpg',9,1577,'image-in',4,388,2187,1500,582269,NULL,NULL),(57179,'https://flaphotography.com/products-photography/',85,1188,'internal',8,313,NULL,NULL,NULL,NULL,NULL),(57180,'https://flaphotography.com/post-production/',85,98,'internal',8,19,NULL,NULL,NULL,NULL,NULL),(58442,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px-400x516.jpg',9,1539,'image-in',4,377,1466,1500,464989,NULL,NULL),(58434,'https://www.instagram.com/kcj_flapstart\'\n',9,NULL,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(58435,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',9,1463,'image-in',4,367,88,300,8115,NULL,NULL),(58436,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1-400x516.jpg',9,1290,'image-in',4,342,2022,1500,388146,NULL,NULL),(58437,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2-400x516.jpg',9,1302,'image-in',4,346,2151,1500,534709,NULL,NULL),(37177,'https://flaphotography.com/post-production/',25,98,'internal',5,19,NULL,NULL,NULL,NULL,NULL),(37176,'https://flaphotography.com/products-photography/',25,1188,'internal',5,313,NULL,NULL,NULL,NULL,NULL),(37175,'https://flaphotography.com/fashion-modeling-sessions/',25,61,'internal',5,6,NULL,NULL,NULL,NULL,NULL),(58441,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-400x516.jpg',9,NULL,'image-in',4,NULL,NULL,NULL,NULL,NULL,NULL),(58438,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-400x516.jpg',9,NULL,'image-in',4,NULL,NULL,NULL,NULL,NULL,NULL),(57188,'https://flaphotography.com/fashion-modeling-sessions/',85,61,'internal',8,6,NULL,NULL,NULL,NULL,NULL),(22631,'http://flapstart.com/',668,NULL,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(22632,'https://flaphotography.com/about/',668,214,'internal',230,89,NULL,NULL,NULL,NULL,NULL),(22633,'https://flaphotography.com/promotion',668,463,'internal',230,157,NULL,NULL,NULL,NULL,NULL),(22634,'https://flaphotography.com/corporate',668,9,'internal',230,4,NULL,NULL,NULL,NULL,NULL),(22635,'https://flaphotography.com/fashion-modeling-sessions/',668,61,'internal',230,6,NULL,NULL,NULL,NULL,NULL),(22636,'https://flaphotography.com/couples-family-sessions/',668,25,'internal',230,5,NULL,NULL,NULL,NULL,NULL),(22637,'https://flaphotography.com/post-production',668,98,'internal',230,19,NULL,NULL,NULL,NULL,NULL),(22638,'https://flapstart.com',668,NULL,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(22639,'https://flaphotography.com/about',668,214,'internal',230,89,NULL,NULL,NULL,NULL,NULL),(22640,'https://www.facebook.com/FlapStart\'\n',668,NULL,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(22641,'https://www.instagram.com/flaphotography_flapstart\'\n',668,NULL,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(22642,'https://flaphotography.com/wp-content/uploads/2021/09/FLAP-PHOTO-LOGO-400PX3.png',668,260,'image-in',230,99,54,400,8462,NULL,NULL),(58440,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S-400x516.jpg',9,1063,'image-in',4,286,2234,2000,633808,NULL,NULL),(58433,'https://www.facebook.com/FlapStart\'\n',9,NULL,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(37173,'#',25,NULL,'internal',5,3,NULL,NULL,NULL,NULL,NULL),(37174,'https://flaphotography.com/corporate/',25,9,'internal',5,4,NULL,NULL,NULL,NULL,NULL),(22623,'https://flaphotography.com/',668,NULL,'internal',230,3,NULL,NULL,NULL,NULL,NULL),(22624,'https://flaphotography.com/',668,NULL,'internal',230,3,NULL,NULL,NULL,NULL,NULL),(32247,'https://flaphotography.com/wp-content/uploads/2021/09/Kassi-The-Photographer3-IMG_2291-1-4000px-scaled.jpg',214,439,'image-in',89,156,2560,2257,614195,NULL,NULL),(58432,'https://flaphotography.com/about',9,214,'internal',4,89,NULL,NULL,NULL,NULL,NULL),(58431,'https://flapstart.com',9,NULL,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(58430,'https://flaphotography.com/post-production',9,98,'internal',4,19,NULL,NULL,NULL,NULL,NULL),(58429,'#',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58428,'https://flaphotography.com/products-photography',9,1188,'internal',4,313,NULL,NULL,NULL,NULL,NULL),(58427,'https://flaphotography.com/fashion-modeling-sessions/',9,61,'internal',4,6,NULL,NULL,NULL,NULL,NULL),(58425,'#',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58426,'https://flaphotography.com/corporate',9,9,'internal',4,4,NULL,NULL,NULL,NULL,NULL),(58424,'#',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58423,'#',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58422,'https://flaphotography.com/wp-content/uploads/2021/10/Lucie_9282-Dark-Grey-2500PX-FREQ-CP.jpg',9,665,'internal',4,224,NULL,NULL,NULL,NULL,NULL),(58421,'https://flaphotography.com/wp-content/uploads/2021/10/Monique-smile_MG_9348-2000PX-FQ2.jpg',9,654,'internal',4,219,NULL,NULL,NULL,NULL,NULL),(58418,'https://flaphotography.com/wp-content/uploads/2022/06/RACHEL-LOOK-IMG_8533-800px.jpg',9,1323,'internal',4,348,NULL,NULL,NULL,NULL,NULL),(58419,'https://flaphotography.com/wp-content/uploads/2021/12/DESTINY-IMG_7351-1300PX2.jpg',9,1105,'internal',4,289,NULL,NULL,NULL,NULL,NULL),(58420,'https://flaphotography.com/wp-content/uploads/2021/12/MR-ED-IMG_7336-CROP-1300PX2.jpg',9,1104,'internal',4,288,NULL,NULL,NULL,NULL,NULL),(37172,'https://flaphotography.com/',25,NULL,'internal',5,3,NULL,NULL,NULL,NULL,NULL),(37171,'https://flaphotography.com/',25,NULL,'internal',5,3,NULL,NULL,NULL,NULL,NULL),(35467,'https://flaphotography.com/post-production',463,98,'internal',157,19,NULL,NULL,NULL,NULL,NULL),(35468,'https://flapstart.com',463,NULL,'external',157,NULL,NULL,NULL,NULL,NULL,NULL),(35469,'https://flaphotography.com/about',463,214,'internal',157,89,NULL,NULL,NULL,NULL,NULL),(35470,'https://www.facebook.com/FlapStart\'\n',463,NULL,'external',157,NULL,NULL,NULL,NULL,NULL,NULL),(52302,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2.jpg',1188,1212,'internal',313,325,NULL,NULL,NULL,NULL,NULL),(52303,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4.jpg',1188,1199,'internal',313,316,NULL,NULL,NULL,NULL,NULL),(52304,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX.jpg',1188,1600,'internal',313,393,NULL,NULL,NULL,NULL,NULL),(52305,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX.jpg',1188,1601,'internal',313,394,NULL,NULL,NULL,NULL,NULL),(52306,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX.jpg',1188,1602,'internal',313,395,NULL,NULL,NULL,NULL,NULL),(52307,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX.jpg',1188,1603,'internal',313,396,NULL,NULL,NULL,NULL,NULL),(52308,'https://flaphotography.com/corporate',1188,9,'internal',313,4,NULL,NULL,NULL,NULL,NULL),(52309,'https://flaphotography.com/fashion-modeling-sessions/',1188,61,'internal',313,6,NULL,NULL,NULL,NULL,NULL),(52310,'https://flaphotography.com/products-photography',1188,1188,'internal',313,313,NULL,NULL,NULL,NULL,NULL),(52311,'#',1188,NULL,'internal',313,3,NULL,NULL,NULL,NULL,NULL),(52312,'https://flaphotography.com/post-production',1188,98,'internal',313,19,NULL,NULL,NULL,NULL,NULL),(52313,'https://flapstart.com',1188,NULL,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(52314,'https://flaphotography.com/about',1188,214,'internal',313,89,NULL,NULL,NULL,NULL,NULL),(52315,'https://www.facebook.com/FlapStart\'\n',1188,NULL,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(52316,'https://www.instagram.com/kcj_flapstart\'\n',1188,NULL,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(52317,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',1188,1463,'image-in',313,367,88,300,8115,NULL,NULL),(52318,'https://flaphotography.com/wp-content/uploads/2022/03/ALOE-VERA-SOAP-Plant_5904-900PX1-400x284.jpg',1188,1198,'image-in',313,315,900,900,44894,NULL,NULL),(52319,'https://flaphotography.com/wp-content/uploads/2022/03/TURMERIC-Plant-IMG_5902-900PX2-400x284.jpg',1188,1177,'image-in',313,310,900,900,80374,NULL,NULL),(52320,'https://flaphotography.com/wp-content/uploads/2022/03/LEVINDER-BUDS-Plant_5898-900px2-400x284.jpg',1188,1204,'image-in',313,321,900,900,43696,NULL,NULL),(52321,'https://flaphotography.com/wp-content/uploads/2022/03/GOATS-MILK-IMG_5897-900PX2-400x284.jpg',1188,1201,'image-in',313,318,900,900,41000,NULL,NULL),(52322,'https://flaphotography.com/wp-content/uploads/2022/03/HARD-BIZWAX-LOTION-OPEN-5886-900px5-400x284.jpg',1188,1203,'image-in',313,320,900,900,38593,NULL,NULL),(52323,'https://flaphotography.com/wp-content/uploads/2022/03/FOAMING-SUGAR-SCRAB-IMG_5918-900PX3-400x284.jpg',1188,1200,'image-in',313,317,900,900,24088,NULL,NULL),(52324,'https://flaphotography.com/wp-content/uploads/2022/03/Shea-Butter-Soap-IMG_5910-900px2-400x284.jpg',1188,1212,'image-in',313,325,900,900,30591,NULL,NULL),(52325,'https://flaphotography.com/wp-content/uploads/2022/03/BLACK-SOAP-Flour_5907-900PX4-400x284.jpg',1188,1199,'image-in',313,316,900,900,69624,NULL,NULL),(52326,'https://flaphotography.com/wp-content/uploads/2022/07/Black-Hoodie9441-1500PX-400x284.jpg',1188,1600,'image-in',313,393,1500,1500,237080,NULL,NULL),(52327,'https://flaphotography.com/wp-content/uploads/2022/07/black-shirt-9452-1500PX-400x284.jpg',1188,1601,'image-in',313,394,1500,1500,292182,NULL,NULL),(52328,'https://flaphotography.com/wp-content/uploads/2022/07/Blue-shirt-IMG_9427-1500PX-400x284.jpg',1188,1602,'image-in',313,395,1500,1500,350987,NULL,NULL),(52329,'https://flaphotography.com/wp-content/uploads/2022/07/Sweater-9435-1500PX-400x284.jpg',1188,1603,'image-in',313,396,1500,1500,316768,NULL,NULL),(58417,'https://flaphotography.com/wp-content/uploads/2022/03/RACHEL-BOSS_8544-BLUE-STRONG2-900PX.jpg',9,1172,'internal',4,308,NULL,NULL,NULL,NULL,NULL),(58414,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-STANDIMG_1792-1500px.jpg',9,1752,'internal',4,434,NULL,NULL,NULL,NULL,NULL),(58415,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-Work-Serious-IMG_6446-6000PX2-CROP-scaled.jpg',9,909,'internal',4,272,NULL,NULL,NULL,NULL,NULL),(54636,'https://flaphotography.com/wp-content/uploads/2021/09/ASH-The-Queen-IMG_0008_-3000pXRNW2-scaled.jpg',61,608,'image-in',6,179,2560,1753,507246,NULL,NULL),(54635,'https://flaphotography.com/wp-content/uploads/2021/09/Young-X-Madness-IMG_0016-3000px-2-scaled.jpg',61,39,'image-in',6,144,2415,2560,649948,NULL,NULL),(54634,'https://flaphotography.com/wp-content/uploads/2021/09/The-set-ash-sitting-IMG_0001_4-3000px-scaled-1-scaled.jpg',61,40,'image-in',6,145,2018,2560,428865,NULL,NULL),(54633,'https://flaphotography.com/wp-content/uploads/2022/03/ASH-GAZE-IMG_0003_3-900PX3.jpg',61,1240,'image-in',6,330,669,900,130820,NULL,NULL),(54632,'https://flaphotography.com/wp-content/uploads/2021/09/Young-x-face-IMG_0002_1-No-title-3000px-scaled-2-scaled.jpg',61,36,'image-in',6,141,2560,1707,632964,NULL,NULL),(54631,'https://flaphotography.com/wp-content/uploads/2021/10/Noelle-Headshot-IMG_5345-2500PX3.jpg',61,810,'image-in',6,254,2145,2500,1780212,NULL,NULL),(58416,'https://flaphotography.com/wp-content/uploads/2021/12/Francine-BOSSY-SMILE-IMG_6436-6000PX3-LIGHTER-scaled.jpg',9,905,'internal',4,269,NULL,NULL,NULL,NULL,NULL),(37224,'https://flaphotography.com/wp-content/uploads/2021/09/Thairu-Dad-IMG_0448-2500px-scaled-1.jpg',25,53,'image-in',5,154,2560,1707,852081,NULL,NULL),(48063,'https://flaphotography.com/wp-content/uploads/2022/07/Francine-BOSS-STAR-IMG_6433-2500PX-CP-1.jpg',1518,1508,'image-in',370,369,1676,2499,712712,NULL,NULL),(57181,'http://flapstart.com/',85,NULL,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(57182,'https://flaphotography.com/about/',85,214,'internal',8,89,NULL,NULL,NULL,NULL,NULL),(58413,'https://flaphotography.com/wp-content/uploads/2022/08/MORLON-PRAYER-IMG_1807-1500px.jpg',9,1751,'internal',4,433,NULL,NULL,NULL,NULL,NULL),(53611,'https://flaphotography.com/fashion-modeling-sessions/',1646,61,'internal',406,6,NULL,NULL,NULL,NULL,NULL),(53612,'https://flaphotography.com/products-photography',1646,1188,'internal',406,313,NULL,NULL,NULL,NULL,NULL),(53613,'#',1646,NULL,'internal',406,3,NULL,NULL,NULL,NULL,NULL),(53614,'https://flaphotography.com/post-production',1646,98,'internal',406,19,NULL,NULL,NULL,NULL,NULL),(53615,'https://flapstart.com',1646,NULL,'external',406,NULL,NULL,NULL,NULL,NULL,NULL),(53616,'https://flaphotography.com/about',1646,214,'internal',406,89,NULL,NULL,NULL,NULL,NULL),(53617,'https://www.facebook.com/FlapStart\'\n',1646,NULL,'external',406,NULL,NULL,NULL,NULL,NULL,NULL),(53618,'https://www.instagram.com/kcj_flapstart\'\n',1646,NULL,'external',406,NULL,NULL,NULL,NULL,NULL,NULL),(53619,'https://flaphotography.com/wp-content/uploads/2022/07/KCJ-Photography-BLA-Logo-300PX.png',1646,1463,'image-in',406,367,88,300,8115,NULL,NULL),(53620,'https://flaphotography.com/wp-content/uploads/2021/09/Black-man-fashion-Green-Clothe-retouched-2880x1800-1-scaled.jpg',1646,144,'image-in',406,57,1600,2560,490362,NULL,NULL),(53621,'https://flaphotography.com/wp-content/uploads/2021/09/Man-in-Brown-Bow-Tie-Suit-Red-Backg-scaled-1.jpg',1646,93,'image-in',406,13,1636,2560,330403,NULL,NULL),(53622,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-Clothed-Arctic-Change_Final-scaled-1.jpg',1646,108,'image-in',406,24,1707,2560,562987,NULL,NULL),(53623,'https://flaphotography.com/wp-content/uploads/2021/09/Woman-sitting-in-the-restaurant_shutterstock_744145633-1536x1025-1.jpg',1646,152,'image-in',406,65,1025,1536,176980,NULL,NULL),(53624,'https://flaphotography.com/wp-content/uploads/2021/09/Red-Lips-fingers-2-New-BGR-Woman-with-flowers-1536x1536-1.jpg',1646,136,'image-in',406,49,1536,1536,251985,NULL,NULL),(53625,'https://flaphotography.com/wp-content/uploads/2021/09/LOGO-FLAPSTART-ORG-230px.png',1646,22,'image-in',406,18,81,230,4351,NULL,NULL),(58411,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Time-Release-IMG_0696-1500px8.jpg',9,1723,'internal',4,426,NULL,NULL,NULL,NULL,NULL),(54592,'https://flaphotography.com/',61,NULL,'internal',6,3,NULL,NULL,NULL,NULL,NULL),(58412,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Face-Up-Cocoa-IMG_1577-1500px.jpg',9,1710,'internal',4,419,NULL,NULL,NULL,NULL,NULL),(58410,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Triangle-Release-IMG_0650-1500px6.jpg',9,1717,'internal',4,423,NULL,NULL,NULL,NULL,NULL),(58408,'https://flaphotography.com/wp-content/uploads/2022/08/francine-Cocoa-Laugh-IMG_1538-1500PX.jpg',9,1695,'internal',4,411,NULL,NULL,NULL,NULL,NULL),(58409,'https://flaphotography.com/wp-content/uploads/2022/08/Marvelous-Move-Reease-IMG_0658-1500px6.jpg',9,1716,'internal',4,422,NULL,NULL,NULL,NULL,NULL),(58407,'https://flaphotography.com/wp-content/uploads/2022/08/Francine-Cocoa-Sharp-IMG_1536-1500PX.jpg',9,1696,'internal',4,412,NULL,NULL,NULL,NULL,NULL),(58406,'https://flaphotography.com/wp-content/uploads/2022/08/IDRAS-Pocket-Pose-IMG_1476-1500px4.jpg',9,1748,'internal',4,432,NULL,NULL,NULL,NULL,NULL),(58405,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-WALK-IMG_1466-1500px.jpg',9,1617,'internal',4,400,NULL,NULL,NULL,NULL,NULL),(58404,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-PRESENT-IMG_1414-1500px.jpg',9,1614,'internal',4,399,NULL,NULL,NULL,NULL,NULL),(58403,'https://flaphotography.com/wp-content/uploads/2022/07/IDRAS-FLY-IMG_1443-1500px.jpg',9,1610,'internal',4,397,NULL,NULL,NULL,NULL,NULL),(58402,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-ARC-IMG_0865-1500PX3.jpg',9,1592,'internal',4,392,NULL,NULL,NULL,NULL,NULL),(58401,'https://flaphotography.com/wp-content/uploads/2022/07/Marvelous-Seat-IMG_0735-1500PX2.jpg',9,1585,'internal',4,391,NULL,NULL,NULL,NULL,NULL),(58400,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-GARDEN-IMG_0821-1500PX.jpg',9,1584,'internal',4,390,NULL,NULL,NULL,NULL,NULL),(58399,'https://flaphotography.com/wp-content/uploads/2022/07/MARVELOUS-SMILE-IMG_0854-1500PX.jpg',9,1583,'internal',4,389,NULL,NULL,NULL,NULL,NULL),(58398,'https://flaphotography.com/wp-content/uploads/2022/07/Q-LEAN-GAZE-IMG_4228-1500px.jpg',9,1538,'internal',4,376,NULL,NULL,NULL,NULL,NULL),(58397,'https://flaphotography.com/wp-content/uploads/2022/07/Q-WIND-IMG_4233-1500px.jpg',9,1539,'internal',4,377,NULL,NULL,NULL,NULL,NULL),(58396,'https://flaphotography.com/wp-content/uploads/2021/12/Faith-Heart-IMG_6894-2000PX-S-scaled.jpg',9,1062,'internal',4,285,NULL,NULL,NULL,NULL,NULL),(58395,'https://flaphotography.com/wp-content/uploads/2021/12/FAITH-JOY-6885-2000PX-S.jpg',9,1063,'internal',4,286,NULL,NULL,NULL,NULL,NULL),(58394,'https://flaphotography.com/wp-content/uploads/2022/07/Q-STRAIGHT-SMILE-IMG-4145-1500px2.jpg',9,1577,'internal',4,388,NULL,NULL,NULL,NULL,NULL),(58393,'https://flaphotography.com/wp-content/uploads/2022/07/Q-BLACK-IMG_4144-1500PX-WIDE-scaled.jpg',9,1575,'internal',4,387,NULL,NULL,NULL,NULL,NULL),(58392,'https://flaphotography.com/wp-content/uploads/2022/06/IMG_4526-1-LOOK-THE-FINAL-1500PXC2.jpg',9,1302,'internal',4,346,NULL,NULL,NULL,NULL,NULL),(58385,'#',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58386,'https://flaphotography.com/fashion-modeling-sessions/',9,61,'internal',4,6,NULL,NULL,NULL,NULL,NULL),(58387,'https://flaphotography.com/products-photography/',9,1188,'internal',4,313,NULL,NULL,NULL,NULL,NULL),(58388,'https://flaphotography.com/post-production/',9,98,'internal',4,19,NULL,NULL,NULL,NULL,NULL),(58389,'http://flapstart.com/',9,NULL,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(58390,'https://flaphotography.com/about/',9,214,'internal',4,89,NULL,NULL,NULL,NULL,NULL),(58391,'https://flaphotography.com/wp-content/uploads/2022/06/CNJ-VISION-IMG_4553-1500pXN1.jpg',9,1290,'internal',4,342,NULL,NULL,NULL,NULL,NULL),(58383,'https://flaphotography.com/',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL),(58384,'https://flaphotography.com/',9,NULL,'internal',4,3,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp1j_yoast_seo_links` 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 2022-12-09 23:37:58
